mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
34 lines
887 B
Nix
34 lines
887 B
Nix
{ stdenv, buildPythonApplication, fetchFromGitHub, makeWrapper, cmake
|
|
, pytestrunner, 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 = [ 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 ];
|
|
};
|
|
}
|