My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyasn1/default.nix

20 lines
501 B

{ lib, buildPythonPackage, fetchPypi, }:
buildPythonPackage rec {
pname = "pyasn1";
version = "0.4.8";
src = fetchPypi {
inherit pname version;
sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba";
};
pythonImportsCheck = [ "pyasn1" ];
meta = with lib; {
description = "Generic ASN.1 library for Python";
homepage = "https://github.com/etingof/pyasn1";
license = licenses.bsd2;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}