pythonPackages.asn1crypto: init at 0.22.0

This commit is contained in:
Frederik Rietdijk 2017-04-18 10:15:50 +02:00
parent 5cc79b9624
commit 632a62a8c0
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "asn1crypto";
version = "0.22.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "cbbadd640d3165ab24b06ef25d1dca09a3441611ac15f6a6b452474fdf0aed1a";
};
# No tests included
doCheck = false;
meta = {
description = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP";
license = lib.licenses.mit;
homepage = https://github.com/wbond/asn1crypto;
};
}

View File

@ -175,6 +175,8 @@ in {
};
};
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
# packages defined elsewhere
bap = callPackage ../development/python-modules/bap {