2021-01-25 09:26:54 +01:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
|
2021-07-20 23:07:53 +02:00
|
|
|
, 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 ];
|
2021-07-20 23:07:53 +02:00
|
|
|
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
|
|
|
|
2021-01-23 13:26:19 +01:00
|
|
|
meta = with lib; {
|
2016-08-07 17:26:56 +02:00
|
|
|
description = "An ASN.1 compiler with a backend for Quick DER";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/vanrein/asn2quickder";
|
2016-08-07 17:26:56 +02:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ leenaars ];
|
|
|
|
};
|
|
|
|
}
|