Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 593 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, isPy27 5, zope_interface 6, zope_location 7, zope_schema 8, unittestCheckHook 9}: 10 11 12buildPythonPackage rec { 13 pname = "zope.copy"; 14 version = "4.3"; 15 16 src = fetchPypi { 17 inherit pname version; 18 hash = "sha256-epg2yjqX9m1WGzYPeGUBKGif4JNAddzg75ECe9xPOlc="; 19 }; 20 21 propagatedBuildInputs = [ zope_interface ]; 22 23 doCheck = !isPy27; # namespace conflicts 24 nativeCheckInputs = [ unittestCheckHook zope_location zope_schema ]; 25 26 unittestFlagsArray = [ "-s" "src/zope/copy" ]; 27 28 meta = { 29 maintainers = with lib.maintainers; [ domenkozar ]; 30 }; 31}