7 python3.pkgs.buildPythonApplication rec {
10 format = "setuptools";
12 src = fetchFromGitHub {
16 hash = "sha256-mgluhC2DMS4OyS/BoWqBdVf7GcxquOtOKTHZ/hbiHQM=";
19 propagatedBuildInputs = with python3.pkgs; [
25 pythonImportsCheck = [ "asn1editor" ];
27 # Tests fail in sandbox, e.g.
28 # "SystemExit: Unable to access the X Display, is $DISPLAY set properly?"
32 description = "Python based editor for ASN.1 encoded data";
33 homepage = "https://github.com/Futsch1/asn1editor";
34 license = licenses.mit;
35 mainProgram = "asn1editor";
36 maintainers = with maintainers; [ bjornfor ];