summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pycec/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pycec/default.nix')
-rw-r--r--pkgs/development/python-modules/pycec/default.nix25
1 files changed, 10 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pycec/default.nix b/pkgs/development/python-modules/pycec/default.nix
index 832d38d72677..dd18f56d9826 100644
--- a/pkgs/development/python-modules/pycec/default.nix
+++ b/pkgs/development/python-modules/pycec/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, libcec
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ libcec,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -20,17 +21,11 @@ buildPythonPackage rec {
hash = "sha256-5KQyHjAvHWeHFqcFHFJxDOPwWuVcFAN2wVdz9a77dzU=";
};
- propagatedBuildInputs = [
- libcec
- ];
+ propagatedBuildInputs = [ libcec ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "pycec"
- ];
+ pythonImportsCheck = [ "pycec" ];
meta = with lib; {
description = "Python modules to access HDMI CEC devices";