pythonPackages.zope_i18nmessageid: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-29 10:29:37 -04:00
parent c9a6836a8f
commit ce84dbdc6d
2 changed files with 23 additions and 13 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "zope.i18nmessageid";
version = "4.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "1rslyph0klk58dmjjy4j0jxy21k03azksixc3x2xhqbkv97cmzml";
};
meta = with stdenv.lib; {
homepage = https://github.com/zopefoundation/zope.i18nmessageid;
description = "Message Identifiers for internationalization";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}