Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 27 lines 576 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, pytz 5, zope_component 6}: 7 8buildPythonPackage rec { 9 pname = "zope.i18n"; 10 version = "4.7.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9fcc1adb4e5f6188769ab36f6f40a59b567bb5eef91f714584e0dfd0891be5d0"; 15 }; 16 17 propagatedBuildInputs = [ pytz zope_component ]; 18 19 meta = with stdenv.lib; { 20 homepage = https://github.com/zopefoundation/zope.i18n; 21 description = "Zope Internationalization Support"; 22 license = licenses.zpl20; 23 maintainers = with maintainers; [ goibhniu ]; 24 broken = true; 25 }; 26 27}