blob: 34d686ebf7e5799bce18ad7e73fa201d0352ef40 (
about) (
plain)
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=";
};
build-system = [ setuptools ];
doCheck = !isPyPy;
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "src/zope/testing/tests.py" ];
pythonImportsCheck = [ "zope.testing" ];
pythonNamespaces = [ "zope" ];
meta = {
description = "Zope testing helpers";
homepage = "https://github.com/zopefoundation/zope.testing";
changelog = "https://github.com/zopefoundation/zope.testing/blob/${version}/CHANGES.rst";
license = lib.licenses.zpl21;
maintainers = [ ];
};
}
|