3 buildPythonApplication,
13 buildPythonApplication rec {
14 pname = "asn2quickder";
17 src = fetchFromGitLab {
21 hash = "sha256-f+ph5PL+uWRkswpOLDwZFWjh938wxoJ6xocJZ2WZLEk=";
25 patchShebangs ./python/scripts/*
27 # Unpin pyparsing 3.0.0. Issue resolved in latest version.
28 substituteInPlace setup.py --replace 'pyparsing==3.0.0' 'pyparsing'
31 dontUseCmakeConfigure = true;
38 propagatedBuildInputs = [
45 doCheck = false; # Flaky tests
48 description = "ASN.1 compiler with a backend for Quick DER";
49 homepage = "https://gitlab.com/arpa2/quick-der";
50 license = licenses.bsd3;
51 platforms = platforms.linux;
52 maintainers = with maintainers; [ leenaars ];