pythonpackages.zope_testrunner: 4.4.10 -> 4.7.0
This commit is contained in:
parent
85c884278e
commit
4ebe73dc1b
32
pkgs/development/python-modules/zope_testrunner/default.nix
Normal file
32
pkgs/development/python-modules/zope_testrunner/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, zope_interface
|
||||||
|
, zope_exceptions
|
||||||
|
, zope_testing
|
||||||
|
, six
|
||||||
|
, subunit
|
||||||
|
}:
|
||||||
|
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "zope.testrunner";
|
||||||
|
version = "4.7.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "8ffcb4989829544a83d27e42b2eeb28f8fc134bd847d71ce8dca54f710526ef0";
|
||||||
|
extension = "zip";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ] ++ stdenv.lib.optional (!isPy3k) subunit;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A flexible test runner with layer support";
|
||||||
|
homepage = http://pypi.python.org/pypi/zope.testrunner;
|
||||||
|
license = licenses.zpt20;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
@ -26277,25 +26277,7 @@ EOF
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
zope_testrunner = buildPythonPackage rec {
|
zope_testrunner = callPackage ../development/python-modules/zope_testrunner { };
|
||||||
name = "zope.testrunner-${version}";
|
|
||||||
version = "4.4.10";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/z/zope.testrunner/${name}.zip";
|
|
||||||
sha256 = "1w09wbqiqmq6hvrammi4fzc7fr129v63gdnzlk4qi2b1xy5qpqab";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ zope_interface zope_exceptions zope_testing six ] ++ optional (!python.is_py3k or false) subunit;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "A flexible test runner with layer support";
|
|
||||||
homepage = http://pypi.python.org/pypi/zope.testrunner;
|
|
||||||
license = licenses.zpt20;
|
|
||||||
maintainers = with maintainers; [ goibhniu ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
zope_traversing = buildPythonPackage rec {
|
zope_traversing = buildPythonPackage rec {
|
||||||
name = "zope.traversing-4.0.0";
|
name = "zope.traversing-4.0.0";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user