587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
28 lines
590 B
Nix
28 lines
590 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, six
|
|
, zope-testing
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plone.testing";
|
|
version = "9.0.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-xdzm4LG/W5ziYXaXbCOfQbZYZvaUUih3lWhkLzWqeUc=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|