summary refs log tree commit diff
path: root/pkgs/development/python-modules/zope_filerepresentation/default.nix
blob: e9104a1b9392bcc983a775e4c5cc989392610b1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv
, buildPythonPackage
, fetchPypi
, zope_schema
}:

buildPythonPackage rec {
  pname = "zope.filerepresentation";
  version = "4.2.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c9bff2b2492b2fe716ee54538441a98d6145d1de87dd921eaa44ac834fbb63b6";
  };

  propagatedBuildInputs = [ zope_schema ];

  meta = with stdenv.lib; {
    homepage = https://zopefilerepresentation.readthedocs.io/;
    description = "File-system Representation Interfaces";
    license = licenses.zpl20;
    maintainers = with maintainers; [ goibhniu ];
  };

}