Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 21.05 29 lines 620 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5, coverage 6, zope_testrunner 7}: 8 9buildPythonPackage rec { 10 pname = "zope.i18nmessageid"; 11 version = "5.0.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 sha256 = "9534142b684c986f5303f469573978e5a340f05ba2eee4f872933f1c38b1b059"; 16 }; 17 18 propagatedBuildInputs = [ six ]; 19 20 checkInputs = [ coverage zope_testrunner ]; 21 22 meta = with lib; { 23 homepage = "https://github.com/zopefoundation/zope.i18nmessageid"; 24 description = "Message Identifiers for internationalization"; 25 license = licenses.zpl20; 26 maintainers = with maintainers; [ goibhniu ]; 27 }; 28 29}