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.1.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "702dbb52e2427a1cc2e2b4b3f5a40c64dcbf9ebed85888ae8fa67172263a6994"; 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}