1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "zope.i18nmessageid";
9 version = "4.3.1";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "e511edff8e75d3a6f84d8256e1e468c85a4aa9d89c2ea264a919334fae7081e3";
14 };
15
16 propagatedBuildInputs = [ six ];
17
18 meta = with stdenv.lib; {
19 homepage = https://github.com/zopefoundation/zope.i18nmessageid;
20 description = "Message Identifiers for internationalization";
21 license = licenses.zpl20;
22 maintainers = with maintainers; [ goibhniu ];
23 };
24
25}