2 , buildPythonApplication
12 buildPythonApplication rec {
13 pname = "asn2quickder";
16 src = fetchFromGitLab {
20 hash = "sha256-f+ph5PL+uWRkswpOLDwZFWjh938wxoJ6xocJZ2WZLEk=";
24 patchShebangs ./python/scripts/*
26 # Unpin pyparsing 3.0.0. Issue resolved in latest version.
27 substituteInPlace setup.py --replace 'pyparsing==3.0.0' 'pyparsing'
30 dontUseCmakeConfigure = true;
32 nativeBuildInputs = [ makeWrapper cmake ];
34 propagatedBuildInputs = [ pyparsing asn1ate six colored ];
36 doCheck = false; # Flaky tests
39 description = "ASN.1 compiler with a backend for Quick DER";
40 homepage = "https://gitlab.com/arpa2/quick-der";
41 license = licenses.bsd3;
42 platforms = platforms.linux;
43 maintainers = with maintainers; [ leenaars ];