pythonPackages.asn1crypto: init at 0.22.0
This commit is contained in:
parent
5cc79b9624
commit
632a62a8c0
24
pkgs/development/python-modules/asn1crypto/default.nix
Normal file
24
pkgs/development/python-modules/asn1crypto/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -175,6 +175,8 @@ in {
|
||||
};
|
||||
};
|
||||
|
||||
asn1crypto = callPackage ../development/python-modules/asn1crypto { };
|
||||
|
||||
# packages defined elsewhere
|
||||
|
||||
bap = callPackage ../development/python-modules/bap {
|
||||
|
Loading…
Reference in New Issue
Block a user