blob: daa68e31afa1dbfcc151a0e95ee2511b8972c51b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
six,
zope-testing,
setuptools,
}:
buildPythonPackage rec {
pname = "plone.testing";
version = "9.0.1";
src = fetchPypi {
inherit pname version;
hash = "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;
};
}
|