Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, zope_schema 5}: 6 7buildPythonPackage rec { 8 pname = "zope.filerepresentation"; 9 version = "5.0.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "3fbca4730c871d8e37b9730763c42b69ba44117cf6d0848014495bb301cae2d6"; 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 }; 24 25}