f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
40 lines
845 B
Nix
40 lines
845 B
Nix
{
|
|
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 = [ ];
|
|
};
|
|
}
|