summary refs log tree commit diff
path: root/pkgs/development/tools/asn2quickder/default.nix
blob: e0b9aec9ee15693bc5224ea15f38cbaaf1c8615a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
, pytestrunner, pytest, six, pyparsing, asn1ate }:

buildPythonApplication rec {
  pname = "asn2quickder";
  version = "1.2-6";

  src = fetchFromGitHub {
    sha256 = "00wifjydgmqw2i5vmr049visc3shjqccgzqynkmmhkjhs86ghzr6";
    rev = "version-${version}";
    owner = "vanrein";
    repo = "quick-der";
  };

  patchPhase = ''
    patchShebangs ./python/scripts/*
  '';

  buildInputs = [ makeWrapper cmake ];
  checkInputs = [ pytestrunner pytest ];

  propagatedBuildInputs = [ pyparsing asn1ate six ];

  meta = with stdenv.lib; {
    description = "An ASN.1 compiler with a backend for Quick DER";
    homepage = https://github.com/vanrein/asn2quickder;
    license = licenses.bsd3;
    platforms = platforms.linux;
    maintainers = with maintainers; [ leenaars ];
  };
}