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_testing/default.nix

30 lines
606 B

{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, zope_interface
, zope_exceptions
, zope_location
}:
buildPythonPackage rec {
pname = "zope.testing";
version = "4.10";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-O25ZBsrd0UjCP+lY5qrj+tyKCKilP3R9l5HC2BNe5W4=";
};
doCheck = !isPyPy;
propagatedBuildInputs = [ zope_interface zope_exceptions zope_location ];
meta = with lib; {
description = "Zope testing helpers";
homepage = "http://pypi.python.org/pypi/zope.testing";
license = licenses.zpl20;
maintainers = with maintainers; [ goibhniu ];
};
}