2018-01-01 14:46:47 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-01-07 10:09:56 +00:00
|
|
|
, six
|
2018-01-01 14:46:47 +00:00
|
|
|
, zope_testing
|
|
|
|
, setuptools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "plone.testing";
|
2019-12-19 19:31:17 +00:00
|
|
|
version = "7.0.3";
|
2018-01-01 14:46:47 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-12-19 19:31:17 +00:00
|
|
|
sha256 = "160f130f641578fbede2e47686f1b58179efa9ff98ccdd1ad198b5d0c7e02474";
|
2018-01-01 14:46:47 +00:00
|
|
|
};
|
|
|
|
|
2019-01-07 10:09:56 +00:00
|
|
|
propagatedBuildInputs = [ six setuptools zope_testing ];
|
2018-01-01 14:46:47 +00:00
|
|
|
|
|
|
|
# Huge amount of testing dependencies (including Zope2)
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Testing infrastructure for Zope and Plone projects";
|
|
|
|
homepage = https://github.com/plone/plone.testing;
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
2019-01-07 10:09:56 +00:00
|
|
|
}
|