depot/third_party/nixpkgs/pkgs/development/python-modules/zope_i18nmessageid/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

29 lines
607 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
, coverage
, zope_testrunner
}:
buildPythonPackage rec {
pname = "zope.i18nmessageid";
version = "5.1.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-R7djR7gOCytmxIbuZvP4bFdJOiB1uFqfuAJpD6cwvZI=";
};
propagatedBuildInputs = [ six ];
checkInputs = [ coverage zope_testrunner ];
meta = with lib; {
homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
description = "Message Identifiers for internationalization";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}