depot/third_party/nixpkgs/pkgs/development/python-modules/zope-filerepresentation/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

30 lines
649 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, zope-schema
, zope-interface
}:
buildPythonPackage rec {
pname = "zope.filerepresentation";
version = "6.0";
src = fetchPypi {
inherit pname version;
hash = "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 ];
};
}