Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 30 lines 536 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, zope_interface 5, zope_location 6, zope_schema 7}: 8 9 10buildPythonPackage rec { 11 pname = "zope.copy"; 12 version = "4.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "47bb9d09ff06c600b446f220f47a742396598ac4828d738d3d85e6490629a71a"; 17 }; 18 19 propagatedBuildInputs = [ zope_interface ]; 20 21 checkInputs = [ zope_location zope_schema ]; 22 23 checkPhase = '' 24 python -m unittest discover -s src/zope/copy 25 ''; 26 27 meta = { 28 maintainers = with lib.maintainers; [ domenkozar ]; 29 }; 30}