summary refs log tree commit diff
path: root/pkgs/development/tools/asn2quickder/default.nix
blob: 1341017df0564880ac3deaafbb932fae99d80547 (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
32
33
{ lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
, pytest-runner, pytest, six, pyparsing, asn1ate }:

buildPythonApplication rec {
  pname = "asn2quickder";
  version = "1.3.0";

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

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

  dontUseCmakeConfigure = true;

  nativeBuildInputs = [ makeWrapper cmake ];
  checkInputs = [ pytest-runner pytest ];

  propagatedBuildInputs = [ pyparsing asn1ate six ];

  meta = with 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 ];
  };
}