1{ lib
2, buildPythonPackage
3, fetchPypi
4, zope_schema
5, zope_interface
6}:
7
8buildPythonPackage rec {
9 pname = "zope.filerepresentation";
10 version = "6.0";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-yza3iGspJ2+C8WhfPykfQjXmac2HhdFHQtRl0Trvaqs=";
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}