diff options
Diffstat (limited to 'pkgs/development/python-modules/pysensors/default.nix')
| -rw-r--r-- | pkgs/development/python-modules/pysensors/default.nix | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pysensors/default.nix b/pkgs/development/python-modules/pysensors/default.nix index eccb831300fe..650b0140f4c7 100644 --- a/pkgs/development/python-modules/pysensors/default.nix +++ b/pkgs/development/python-modules/pysensors/default.nix @@ -1,4 +1,10 @@ -{ lib, buildPythonPackage, unittestCheckHook, fetchFromGitHub, lm_sensors }: +{ + lib, + buildPythonPackage, + unittestCheckHook, + fetchFromGitHub, + lm_sensors, +}: buildPythonPackage { version = "2017-07-13"; format = "setuptools"; @@ -20,7 +26,10 @@ buildPythonPackage { nativeCheckInputs = [ unittestCheckHook ]; - unittestFlagsArray = [ "-s" "tests" ]; + unittestFlagsArray = [ + "-s" + "tests" + ]; meta = with lib; { maintainers = with maintainers; [ guibou ]; |
