29 lines
603 B
Nix
29 lines
603 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, zope_testing
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plone.testing";
|
|
version = "8.0.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "082b03aebe81d0bdcc44a917a795ae60d3add2c2abbee11e7c335fb13d5e7ca7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six setuptools zope_testing ];
|
|
|
|
# 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;
|
|
};
|
|
}
|