Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 18 lines 446 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, }: 2 3buildPythonPackage rec { 4 pname = "pyasn1"; 5 version = "0.4.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "da2420fe13a9452d8ae97a0e478adde1dee153b11ba832a95b223a2ba01c10f7"; 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}