pythonPackages.zope_filerepresentation: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov 2018-10-29 10:24:44 -04:00
parent 4a51ac6876
commit 1fd6cd9a5b
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 26 additions and 15 deletions

View file

@ -0,0 +1,25 @@
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_schema
}:
buildPythonPackage rec {
pname = "zope.filerepresentation";
version = "3.6.1";
src = fetchPypi {
inherit pname version;
sha256 = "d775ebba4aff7687e0381f050ebda4e48ce50900c1438f3f7e901220634ed3e0";
};
propagatedBuildInputs = [ zope_schema ];
meta = with stdenv.lib; {
homepage = http://zopefilerepresentation.readthedocs.io/;
description = "File-system Representation Interfaces";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}

View file

@ -4198,21 +4198,7 @@ in {
zope_exceptions = callPackage ../development/python-modules/zope_exceptions { };
zope_filerepresentation = buildPythonPackage rec {
name = "zope.filerepresentation-3.6.1";
src = pkgs.fetchurl {
url = "mirror://pypi/z/zope.filerepresentation/${name}.tar.gz";
sha256 = "d775ebba4aff7687e0381f050ebda4e48ce50900c1438f3f7e901220634ed3e0";
};
propagatedBuildInputs = with self; [ zope_schema ];
meta = {
maintainers = with maintainers; [ goibhniu ];
};
};
zope_filerepresentation = callPackage ../development/python-modules/zope_filerepresentation { };
zope_i18n = buildPythonPackage rec {
name = "zope.i18n-3.8.0";