1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_schema
5, zope_interface
6}:
7
8buildPythonPackage rec {
9 pname = "zope.filerepresentation";
10 version = "5.0.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1mp2r80v6ns92j089l7ngh8l9fk95g2661vkp4vqw7c71irs9g1z";
15 };
16
17 propagatedBuildInputs = [ zope_interface zope_schema ];
18
19 checkPhase = ''
20 cd src/zope/filerepresentation && python -m unittest
21 '';
22
23 meta = with lib; {
24 homepage = "https://zopefilerepresentation.readthedocs.io/";
25 description = "File-system Representation Interfaces";
26 license = licenses.zpl20;
27 maintainers = with maintainers; [ goibhniu ];
28 };
29
30}