Loading pkgs/development/python-modules/pytest-integration/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system setuptools, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "pytest-integration"; version = "0.2.3"; pyproject = true; src = fetchFromGitHub { owner = "jbwdevries"; repo = "pytest-integration"; tag = "v${version}"; hash = "sha256-Ziy+GEfljYDccx3mm63p7rhDUQVDXLbk7DxUW3npjiE="; }; build-system = [ setuptools ]; pythonImportsCheck = [ "pytest_integration" ]; nativeCheckInputs = [ pytestCheckHook ]; # Tests need to discover the mock `package` module located under `example/` preCheck = '' pushd example ''; postCheck = '' popd ''; meta = { description = "Organizing test by unit test, quick integration or slow integration"; homepage = "https://github.com/jbwdevries/pytest-integration"; changelog = "https://github.com/jbwdevries/pytest-integration/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -14737,6 +14737,8 @@ self: super: with self; { pytest-instafail = callPackage ../development/python-modules/pytest-instafail { }; pytest-integration = callPackage ../development/python-modules/pytest-integration { }; pytest-isort = callPackage ../development/python-modules/pytest-isort { }; pytest-json-report = callPackage ../development/python-modules/pytest-json-report { }; Loading
pkgs/development/python-modules/pytest-integration/default.nix 0 → 100644 +51 −0 Original line number Diff line number Diff line { lib, buildPythonPackage, fetchFromGitHub, # build-system setuptools, # tests pytestCheckHook, }: buildPythonPackage rec { pname = "pytest-integration"; version = "0.2.3"; pyproject = true; src = fetchFromGitHub { owner = "jbwdevries"; repo = "pytest-integration"; tag = "v${version}"; hash = "sha256-Ziy+GEfljYDccx3mm63p7rhDUQVDXLbk7DxUW3npjiE="; }; build-system = [ setuptools ]; pythonImportsCheck = [ "pytest_integration" ]; nativeCheckInputs = [ pytestCheckHook ]; # Tests need to discover the mock `package` module located under `example/` preCheck = '' pushd example ''; postCheck = '' popd ''; meta = { description = "Organizing test by unit test, quick integration or slow integration"; homepage = "https://github.com/jbwdevries/pytest-integration"; changelog = "https://github.com/jbwdevries/pytest-integration/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ GaetanLepage ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -14737,6 +14737,8 @@ self: super: with self; { pytest-instafail = callPackage ../development/python-modules/pytest-instafail { }; pytest-integration = callPackage ../development/python-modules/pytest-integration { }; pytest-isort = callPackage ../development/python-modules/pytest-isort { }; pytest-json-report = callPackage ../development/python-modules/pytest-json-report { };