diff options
Diffstat (limited to 'pkgs/development/python-modules/rachiopy/default.nix')
-rw-r--r-- | pkgs/development/python-modules/rachiopy/default.nix | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/pkgs/development/python-modules/rachiopy/default.nix b/pkgs/development/python-modules/rachiopy/default.nix index 1eb1b547e418..5aa28e517370 100644 --- a/pkgs/development/python-modules/rachiopy/default.nix +++ b/pkgs/development/python-modules/rachiopy/default.nix @@ -1,11 +1,12 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, jsonschema -, pytestCheckHook -, pythonOlder -, requests -, setuptools +{ + lib, + buildPythonPackage, + fetchFromGitHub, + jsonschema, + pytestCheckHook, + pythonOlder, + requests, + setuptools, }: buildPythonPackage rec { @@ -22,22 +23,16 @@ buildPythonPackage rec { hash = "sha256-PsdEXNy8vUxba/C00ARhLTQU9gMlChy9XdU20r+Maus="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; - propagatedBuildInputs = [ - requests - ]; + propagatedBuildInputs = [ requests ]; nativeCheckInputs = [ jsonschema pytestCheckHook ]; - pythonImportsCheck = [ - "rachiopy" - ]; + pythonImportsCheck = [ "rachiopy" ]; meta = with lib; { description = "Python client for Rachio Irrigation controller"; |