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
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 ];
};
}