1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, zope_schema
5}:
6
7buildPythonPackage rec {
8 pname = "zope.filerepresentation";
9 version = "4.2.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "c9bff2b2492b2fe716ee54538441a98d6145d1de87dd921eaa44ac834fbb63b6";
14 };
15
16 propagatedBuildInputs = [ zope_schema ];
17
18 meta = with stdenv.lib; {
19 homepage = http://zopefilerepresentation.readthedocs.io/;
20 description = "File-system Representation Interfaces";
21 license = licenses.zpl20;
22 maintainers = with maintainers; [ goibhniu ];
23 };
24
25}