python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / pytest-helpers-namespace / default.nix
blobced0389f2887d7b9531f743ac9300ad8e7907e98
2   buildPythonPackage,
3   fetchPypi,
4   pytestCheckHook,
5   isPy27,
6   lib,
7   setuptools,
8   setuptools-declarative-requirements,
9   setuptools-scm,
12 buildPythonPackage rec {
13   pname = "pytest-helpers-namespace";
14   version = "2021.12.29";
15   format = "setuptools";
16   disabled = isPy27;
18   src = fetchPypi {
19     inherit pname version;
20     sha256 = "792038247e0021beb966a7ea6e3a70ff5fcfba77eb72c6ec8fd6287af871c35b";
21   };
23   nativeBuildInputs = [
24     setuptools
25     setuptools-declarative-requirements
26     setuptools-scm
27   ];
29   nativeCheckInputs = [ pytestCheckHook ];
31   pythonImportsCheck = [ "pytest_helpers_namespace" ];
33   meta = with lib; {
34     homepage = "https://github.com/saltstack/pytest-helpers-namespace";
35     description = "PyTest Helpers Namespace";
36     license = licenses.asl20;
37     maintainers = [ ];
38   };