nixpkgs/pkgs/development/python-modules/zope_i18n/default.nix

27 lines
557 B
Nix
Raw Normal View History

{ stdenv
, buildPythonPackage
, fetchPypi
, pytz
, zope_component
}:
buildPythonPackage rec {
pname = "zope.i18n";
2018-11-04 10:35:23 +00:00
version = "4.6.1";
src = fetchPypi {
inherit pname version;
2018-11-04 10:35:23 +00:00
sha256 = "14f7339f6d4fed5e94882a7f1b2e40fd90ad00b3c28a7f4353762101395e3304";
};
propagatedBuildInputs = [ pytz zope_component ];
meta = with stdenv.lib; {
homepage = https://github.com/zopefoundation/zope.i18n;
description = "Zope Internationalization Support";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}