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

30 lines
657 B

{ lib
, buildPythonPackage
, fetchPypi
, zope_interface
, zope_exceptions
, zope_testing
, six
}:
buildPythonPackage rec {
pname = "zope.testrunner";
version = "5.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-ahDTg1RZ7tO8hDHyGq9gS8dU/4OSopeXzSDlqUHBQ74=";
};
propagatedBuildInputs = [ zope_interface zope_exceptions zope_testing six ];
doCheck = false; # custom test modifies sys.path
meta = with lib; {
description = "A flexible test runner with layer support";
homepage = "https://pypi.python.org/pypi/zope.testrunner";
license = licenses.zpl20;
maintainers = [ maintainers.goibhniu ];
};
}