nixpkgs/pkgs/development/tools/asn2quickder/default.nix

34 lines
879 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
, pytest-runner, pytest, six, pyparsing, asn1ate }:
2016-08-07 17:26:56 +02:00
2018-02-12 17:30:17 +01:00
buildPythonApplication rec {
2016-08-07 17:26:56 +02:00
pname = "asn2quickder";
2020-01-26 02:59:59 +01:00
version = "1.3.0";
2016-08-07 17:26:56 +02:00
src = fetchFromGitHub {
2020-01-26 02:59:59 +01:00
sha256 = "15lxv8vcjnsjxg7ywcac5p6mj5vf5pxq1219yap653ci4f1liqfr";
2016-08-07 17:26:56 +02:00
rev = "version-${version}";
owner = "vanrein";
2018-02-12 17:30:17 +01:00
repo = "quick-der";
2016-08-07 17:26:56 +02:00
};
2019-09-08 22:48:29 +02:00
postPatch = ''
2018-02-12 17:30:17 +01:00
patchShebangs ./python/scripts/*
'';
2016-08-07 17:26:56 +02:00
2019-09-08 22:48:29 +02:00
dontUseCmakeConfigure = true;
nativeBuildInputs = [ makeWrapper cmake ];
checkInputs = [ pytest-runner pytest ];
2016-08-07 17:26:56 +02:00
2018-02-12 17:30:17 +01:00
propagatedBuildInputs = [ pyparsing asn1ate six ];
2016-08-07 17:26:56 +02:00
meta = with lib; {
2016-08-07 17:26:56 +02:00
description = "An ASN.1 compiler with a backend for Quick DER";
homepage = "https://github.com/vanrein/asn2quickder";
2016-08-07 17:26:56 +02:00
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ leenaars ];
};
}