vscode-extensions.yoavbls.pretty-ts-errors: 0.5.4 -> 0.6.1 (#363464)
[NixPkgs.git] / pkgs / development / python-modules / zope-testing / default.nix
blob8b0c7e22cfd51167f1b2f2837e6e41ed9528aaa7
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPyPy,
6   setuptools,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "zope-testing";
12   version = "5.0.1";
13   pyproject = true;
15   src = fetchPypi {
16     pname = "zope.testing";
17     inherit version;
18     hash = "sha256-6HzQ2NZmVzza8TOBare5vuyAGmSoZZXBnLX+mS7z1kk=";
19   };
21   nativeBuildInputs = [ setuptools ];
23   doCheck = !isPyPy;
25   nativeCheckInputs = [ pytestCheckHook ];
27   pytestFlagsArray = [ "src/zope/testing/tests.py" ];
29   pythonImportsCheck = [ "zope.testing" ];
31   pythonNamespaces = [ "zope" ];
33   meta = with lib; {
34     description = "Zope testing helpers";
35     homepage = "https://github.com/zopefoundation/zope.testing";
36     changelog = "https://github.com/zopefoundation/zope.testing/blob/${version}/CHANGES.rst";
37     license = licenses.zpl21;
38     maintainers = [ ];
39   };