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 meta = with 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}