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