diff options
Diffstat (limited to 'pkgs/development/python-modules/finitude/default.nix')
-rw-r--r-- | pkgs/development/python-modules/finitude/default.nix | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/pkgs/development/python-modules/finitude/default.nix b/pkgs/development/python-modules/finitude/default.nix index d7f1af78750f..cf2e80928f06 100644 --- a/pkgs/development/python-modules/finitude/default.nix +++ b/pkgs/development/python-modules/finitude/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, prometheus-client -, pyserial -, pythonOlder -, pyyaml -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + prometheus-client, + pyserial, + pythonOlder, + pyyaml, + setuptools, }: buildPythonPackage rec { @@ -22,9 +23,7 @@ buildPythonPackage rec { hash = "sha256-yCI5UCRDhw+dJoTKyjmHbAGBm3by2AyxHKlqCywnLcs="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ pyserial @@ -35,9 +34,7 @@ buildPythonPackage rec { # Module has no tests doCheck = false; - pythonImportsCheck = [ - "finitude" - ]; + pythonImportsCheck = [ "finitude" ]; meta = with lib; { description = "Python module to get data from ABCD bus (RS-485) used by Carrier Infinity and Bryant Evolution HVAC systems"; |