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";
|
2020-10-15 20:30:03 +01:00
|
|
|
version = "8.0.2";
|
2018-01-01 14:46:47 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-15 20:30:03 +01:00
|
|
|
sha256 = "082b03aebe81d0bdcc44a917a795ae60d3add2c2abbee11e7c335fb13d5e7ca7";
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/plone/plone.testing";
|
2018-01-01 14:46:47 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
};
|
2019-01-07 10:09:56 +00:00
|
|
|
}
|