Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pytest-helpers-namespace / default.nix
blob7ac3fdc47f28b2ed956110f96b012abacdfa6aa8
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   disabled = isPy27;
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "792038247e0021beb966a7ea6e3a70ff5fcfba77eb72c6ec8fd6287af871c35b";
19   };
21   nativeBuildInputs = [ setuptools setuptools-declarative-requirements setuptools-scm ];
23   nativeCheckInputs = [ pytestCheckHook ];
25   pythonImportsCheck = [ "pytest_helpers_namespace" ];
27   meta = with lib; {
28     homepage = "https://github.com/saltstack/pytest-helpers-namespace";
29     description = "PyTest Helpers Namespace";
30     license = licenses.asl20;
31     maintainers = [ maintainers.kiwi ];
32   };