depot/third_party/nixpkgs/pkgs/development/python-modules/zope-testing/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

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 = [ ];
};
}