nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 26 lines 579 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_schema 5}: 6 7buildPythonPackage rec { 8 pname = "zope.filerepresentation"; 9 version = "4.2.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "c9bff2b2492b2fe716ee54538441a98d6145d1de87dd921eaa44ac834fbb63b6"; 14 }; 15 16 propagatedBuildInputs = [ zope_schema ]; 17 18 meta = with stdenv.lib; { 19 homepage = https://zopefilerepresentation.readthedocs.io/; 20 description = "File-system Representation Interfaces"; 21 license = licenses.zpl20; 22 maintainers = with maintainers; [ goibhniu ]; 23 broken = true; 24 }; 25 26}