Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytest-helpers-namespace / default.nix
blob6d1c3cf4f136d29a644286ef0eb1bcdc2ea93ee3
1 { buildPythonPackage
2 , fetchPypi
3 , pytestCheckHook
4 , isPy27
5 , lib
6 , setuptools
7 , setuptools-declarative-requirements
8 , setuptools-scm
9 }:
11 buildPythonPackage rec {
12   pname = "pytest-helpers-namespace";
13   version = "2021.12.29";
14   format = "setuptools";
15   disabled = isPy27;
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "792038247e0021beb966a7ea6e3a70ff5fcfba77eb72c6ec8fd6287af871c35b";
20   };
22   nativeBuildInputs = [ setuptools setuptools-declarative-requirements setuptools-scm ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   pythonImportsCheck = [ "pytest_helpers_namespace" ];
28   meta = with lib; {
29     homepage = "https://github.com/saltstack/pytest-helpers-namespace";
30     description = "PyTest Helpers Namespace";
31     license = licenses.asl20;
32     maintainers = [ maintainers.kiwi ];
33   };