blob: 8b0c7e22cfd51167f1b2f2837e6e41ed9528aaa7 (
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
34
35
36
37
38
39
40
|
{
lib,
buildPythonPackage,
fetchPypi,
isPyPy,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "zope-testing";
version = "5.0.1";
pyproject = true;
src = fetchPypi {
pname = "zope.testing";
inherit version;
hash = "sha256-6HzQ2NZmVzza8TOBare5vuyAGmSoZZXBnLX+mS7z1kk=";
};
nativeBuildInputs = [ setuptools ];
doCheck = !isPyPy;
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "src/zope/testing/tests.py" ];
pythonImportsCheck = [ "zope.testing" ];
pythonNamespaces = [ "zope" ];
meta = with lib; {
description = "Zope testing helpers";
homepage = "https://github.com/zopefoundation/zope.testing";
changelog = "https://github.com/zopefoundation/zope.testing/blob/${version}/CHANGES.rst";
license = licenses.zpl21;
maintainers = [ ];
};
}
|