summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/aiowebostv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/aiowebostv/default.nix')
-rw-r--r--pkgs/development/python-modules/aiowebostv/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/aiowebostv/default.nix b/pkgs/development/python-modules/aiowebostv/default.nix
index e264710e0c47..2e3ee99d5ab3 100644
--- a/pkgs/development/python-modules/aiowebostv/default.nix
+++ b/pkgs/development/python-modules/aiowebostv/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pythonOlder
-, setuptools
-, websockets
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pythonOlder,
+ setuptools,
+ websockets,
}:
buildPythonPackage rec {
@@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-VUznW+rMCZF1LbrQmEaOgdcX3YCm6Tf7yWlB8KNrjxU=";
};
- nativeBuildInputs = [
- setuptools
- ];
+ nativeBuildInputs = [ setuptools ];
- propagatedBuildInputs = [
- websockets
- ];
+ propagatedBuildInputs = [ websockets ];
# Module doesn't have tests
doCheck = false;
- pythonImportsCheck = [
- "aiowebostv"
- ];
+ pythonImportsCheck = [ "aiowebostv" ];
meta = with lib; {
description = "Module to interact with LG webOS based TV devices";