nixpkgs/pkgs/development/python-modules/pytest-json-report/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

54 lines
962 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest
, pytest-metadata
, pytest-xdist
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "pytest-json-report";
version = "1.5.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "numirias";
repo = pname;
rev = "v${version}";
hash = "sha256-hMB/atDuo7CjwhHFUOxVfgJ7Qp4AA9J428iv7hyQFcs=";
};
buildInputs = [
pytest
];
propagatedBuildInputs = [
pytest-metadata
];
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
disabledTests = [
# pytest-flaky is not available at the moment
"test_bug_31"
];
pythonImportsCheck = [
"pytest_jsonreport"
];
meta = with lib; {
description = "Pytest plugin to report test results as JSON";
homepage = "https://github.com/numirias/pytest-json-report";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}