summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-check/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytest-check/default.nix')
-rw-r--r--pkgs/development/python-modules/pytest-check/default.nix29
1 files changed, 11 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/pytest-check/default.nix b/pkgs/development/python-modules/pytest-check/default.nix
index efa2cc4049bc..c9f7b131c9d4 100644
--- a/pkgs/development/python-modules/pytest-check/default.nix
+++ b/pkgs/development/python-modules/pytest-check/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, flit-core
-, pytest
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ flit-core,
+ pytest,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -17,21 +18,13 @@ buildPythonPackage rec {
hash = "sha256-UbjxiozKpCbF2RPE4ORvAUqqdXlIHqA9Itfh9Jj2ibI=";
};
- nativeBuildInputs = [
- flit-core
- ];
+ nativeBuildInputs = [ flit-core ];
- buildInputs = [
- pytest
- ];
+ buildInputs = [ pytest ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "pytest_check"
- ];
+ pythonImportsCheck = [ "pytest_check" ];
meta = with lib; {
description = "pytest plugin allowing multiple failures per test";