2018-10-29 14:29:37 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2018-11-04 10:35:23 +00:00
|
|
|
, six
|
2020-06-03 05:26:11 +01:00
|
|
|
, coverage
|
|
|
|
, zope_testrunner
|
2018-10-29 14:29:37 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "zope.i18nmessageid";
|
2020-05-09 11:02:04 +01:00
|
|
|
version = "5.0.1";
|
2018-10-29 14:29:37 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 11:02:04 +01:00
|
|
|
sha256 = "9534142b684c986f5303f469573978e5a340f05ba2eee4f872933f1c38b1b059";
|
2018-10-29 14:29:37 +00:00
|
|
|
};
|
|
|
|
|
2018-11-04 10:35:23 +00:00
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2020-06-03 05:26:11 +01:00
|
|
|
checkInputs = [ coverage zope_testrunner ];
|
|
|
|
|
2018-10-29 14:29:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/zopefoundation/zope.i18nmessageid";
|
2018-10-29 14:29:37 +00:00
|
|
|
description = "Message Identifiers for internationalization";
|
|
|
|
license = licenses.zpl20;
|
|
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|