1{ lib, buildPythonPackage, fetchPypi, }: 2 3buildPythonPackage rec { 4 pname = "pyasn1"; 5 version = "0.4.8"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "aef77c9fb94a3ac588e87841208bdec464471d9871bd5050a287cc9a475cd0ba"; 10 }; 11 12 pythonImportsCheck = [ "pyasn1" ]; 13 14 meta = with lib; { 15 description = "Generic ASN.1 library for Python"; 16 homepage = "https://github.com/etingof/pyasn1"; 17 license = licenses.bsd2; 18 maintainers = with maintainers; [ SuperSandro2000 ]; 19 }; 20}