Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 18 lines 446 B view raw
1{ stdenv, 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 meta = with stdenv.lib; { 13 description = "ASN.1 tools for Python"; 14 homepage = http://pyasn1.sourceforge.net/; 15 license = "mBSD"; 16 platforms = platforms.unix; # arbitrary choice 17 }; 18}