My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/zope_copy/default.nix

32 lines
588 B

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, zope_interface
, zope_location
, zope_schema
}:
buildPythonPackage rec {
pname = "zope.copy";
version = "4.2";
src = fetchPypi {
inherit pname version;
sha256 = "47bb9d09ff06c600b446f220f47a742396598ac4828d738d3d85e6490629a71a";
};
propagatedBuildInputs = [ zope_interface ];
doCheck = !isPy27; # namespace conflicts
checkInputs = [ zope_location zope_schema ];
checkPhase = ''
python -m unittest discover -s src/zope/copy
'';
meta = {
maintainers = with lib.maintainers; [ domenkozar ];
};
}