diff options
Diffstat (limited to 'pkgs/development/python-modules/pytest-raises/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pytest-raises/default.nix | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pytest-raises/default.nix b/pkgs/development/python-modules/pytest-raises/default.nix index 1b7beb74c594..84c8ee190966 100644 --- a/pkgs/development/python-modules/pytest-raises/default.nix +++ b/pkgs/development/python-modules/pytest-raises/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, pytest -, pytestCheckHook -, pythonOlder +{ + lib, + buildPythonPackage, + fetchFromGitHub, + pytest, + pytestCheckHook, + pythonOlder, }: buildPythonPackage rec { @@ -20,17 +21,11 @@ buildPythonPackage rec { hash = "sha256-wmtWPWwe1sFbWSYxs5ZXDUZM1qvjRGMudWdjQeskaz0="; }; - buildInputs = [ - pytest - ]; + buildInputs = [ pytest ]; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; - pythonImportsCheck = [ - "pytest_raises" - ]; + pythonImportsCheck = [ "pytest_raises" ]; disabledTests = [ # Failed: nomatch: '*::test_pytest_mark_raises_unexpected_exception FAILED*' |
