forked from mirrors/nixpkgs
pythonPackages.zope_i18nmessageid: refactor move to python-modules
This commit is contained in:
parent
c9a6836a8f
commit
ce84dbdc6d
|
@ -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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -4202,19 +4202,7 @@ in {
|
|||
|
||||
zope_i18n = callPackage ../development/python-modules/zope_i18n { };
|
||||
|
||||
zope_i18nmessageid = buildPythonPackage rec {
|
||||
name = "zope.i18nmessageid-4.0.3";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/z/zope.i18nmessageid/zope.i18nmessageid-4.0.3.tar.gz";
|
||||
sha256 = "1rslyph0klk58dmjjy4j0jxy21k03azksixc3x2xhqbkv97cmzml";
|
||||
};
|
||||
|
||||
meta = {
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
};
|
||||
};
|
||||
|
||||
zope_i18nmessageid = callPackage ../development/python-modules/zope_i18nmessageid { };
|
||||
|
||||
zope_lifecycleevent = buildPythonPackage rec {
|
||||
name = "zope.lifecycleevent-3.7.0";
|
||||
|
|
Loading…
Reference in a new issue