diff options
Diffstat (limited to 'pkgs/development/python-modules/pyskyqhub/default.nix')
-rw-r--r-- | pkgs/development/python-modules/pyskyqhub/default.nix | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/development/python-modules/pyskyqhub/default.nix b/pkgs/development/python-modules/pyskyqhub/default.nix index 216e998a4902..95aedea3d074 100644 --- a/pkgs/development/python-modules/pyskyqhub/default.nix +++ b/pkgs/development/python-modules/pyskyqhub/default.nix @@ -1,8 +1,9 @@ -{ lib -, aiohttp -, buildPythonPackage -, fetchFromGitHub -, pythonOlder +{ + lib, + aiohttp, + buildPythonPackage, + fetchFromGitHub, + pythonOlder, }: buildPythonPackage rec { @@ -19,16 +20,12 @@ buildPythonPackage rec { hash = "sha256-yXqtABbsCh1yb96lsEA0gquikVenGLCo6J93AeXAC8k="; }; - propagatedBuildInputs = [ - aiohttp - ]; + propagatedBuildInputs = [ aiohttp ]; # Tests require phyiscal hardware doCheck = false; - pythonImportsCheck = [ - "pyskyqhub" - ]; + pythonImportsCheck = [ "pyskyqhub" ]; meta = with lib; { description = "Python module for accessing SkyQ Hub"; |