summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pytest-cases/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pytest-cases/default.nix')
-rw-r--r--pkgs/development/python-modules/pytest-cases/default.nix29
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/pytest-cases/default.nix b/pkgs/development/python-modules/pytest-cases/default.nix
index 9c89a38c1059..8741af9da335 100644
--- a/pkgs/development/python-modules/pytest-cases/default.nix
+++ b/pkgs/development/python-modules/pytest-cases/default.nix
@@ -1,11 +1,12 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, makefun
-, decopatch
-, pythonOlder
-, pytest
-, setuptools-scm
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ makefun,
+ decopatch,
+ pythonOlder,
+ pytest,
+ setuptools-scm,
}:
buildPythonPackage rec {
@@ -20,13 +21,9 @@ buildPythonPackage rec {
hash = "sha256-ySBUGHhHp9MNirZwn7FnCoMOThkjS+cAyFyWttcQLBY=";
};
- nativeBuildInputs = [
- setuptools-scm
- ];
+ nativeBuildInputs = [ setuptools-scm ];
- buildInputs = [
- pytest
- ];
+ buildInputs = [ pytest ];
propagatedBuildInputs = [
decopatch
@@ -38,9 +35,7 @@ buildPythonPackage rec {
# makefun, pytest-*) have circular dependencies.
doCheck = false;
- pythonImportsCheck = [
- "pytest_cases"
- ];
+ pythonImportsCheck = [ "pytest_cases" ];
meta = with lib; {
description = "Separate test code from test cases in pytest";