1{
2 buildPythonPackage,
3 fetchPypi,
4 pytestCheckHook,
5 isPy27,
6 lib,
7 setuptools,
8 setuptools-declarative-requirements,
9 setuptools-scm,
10}:
11
12buildPythonPackage rec {
13 pname = "pytest-helpers-namespace";
14 version = "2021.12.29";
15 format = "setuptools";
16 disabled = isPy27;
17
18 src = fetchPypi {
19 inherit pname version;
20 sha256 = "792038247e0021beb966a7ea6e3a70ff5fcfba77eb72c6ec8fd6287af871c35b";
21 };
22
23 nativeBuildInputs = [
24 setuptools
25 setuptools-declarative-requirements
26 setuptools-scm
27 ];
28
29 nativeCheckInputs = [ pytestCheckHook ];
30
31 pythonImportsCheck = [ "pytest_helpers_namespace" ];
32
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 };
39}