a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
30 lines
651 B
Nix
30 lines
651 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, zope_schema
|
|
, zope_interface
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "zope.filerepresentation";
|
|
version = "6.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-yza3iGspJ2+C8WhfPykfQjXmac2HhdFHQtRl0Trvaqs=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ zope_interface zope_schema ];
|
|
|
|
checkPhase = ''
|
|
cd src/zope/filerepresentation && python -m unittest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zopefilerepresentation.readthedocs.io/";
|
|
description = "File-system Representation Interfaces";
|
|
license = licenses.zpl20;
|
|
maintainers = with maintainers; [ goibhniu ];
|
|
};
|
|
|
|
}
|