Merge pull request #123181 from fabaff/ha-philipsjs
This commit is contained in:
commit
fda6185f75
45
pkgs/development/python-modules/ha-philipsjs/default.nix
Normal file
45
pkgs/development/python-modules/ha-philipsjs/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, cryptography
|
||||||
|
, fetchFromGitHub
|
||||||
|
, httpx
|
||||||
|
, pytest-aiohttp
|
||||||
|
, pytest-mock
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, respx
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "ha-philipsjs";
|
||||||
|
version = "2.7.4";
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "danielperna84";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "08fjdb1q02dwxq8s15ddd00gps64xplblkn8dx5yivldskiy8i1n";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
cryptography
|
||||||
|
httpx
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-aiohttp
|
||||||
|
pytest-mock
|
||||||
|
pytestCheckHook
|
||||||
|
respx
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "haphilipsjs" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library to interact with Philips TVs with jointSPACE API";
|
||||||
|
homepage = "https://github.com/danielperna84/ha-philipsjs";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -626,7 +626,7 @@
|
|||||||
"pencom" = ps: with ps; [ ]; # missing inputs: pencompy
|
"pencom" = ps: with ps; [ ]; # missing inputs: pencompy
|
||||||
"persistent_notification" = ps: with ps; [ ];
|
"persistent_notification" = ps: with ps; [ ];
|
||||||
"person" = ps: with ps; [ aiohttp-cors pillow ];
|
"person" = ps: with ps; [ aiohttp-cors pillow ];
|
||||||
"philips_js" = ps: with ps; [ ]; # missing inputs: ha-philipsjs
|
"philips_js" = ps: with ps; [ ha-philipsjs ];
|
||||||
"pi4ioe5v9xxxx" = ps: with ps; [ ]; # missing inputs: pi4ioe5v9xxxx
|
"pi4ioe5v9xxxx" = ps: with ps; [ ]; # missing inputs: pi4ioe5v9xxxx
|
||||||
"pi_hole" = ps: with ps; [ hole ];
|
"pi_hole" = ps: with ps; [ hole ];
|
||||||
"picnic" = ps: with ps; [ python-picnic-api ];
|
"picnic" = ps: with ps; [ python-picnic-api ];
|
||||||
|
@ -336,6 +336,7 @@ in with py.pkgs; buildPythonApplication rec {
|
|||||||
"panel_iframe"
|
"panel_iframe"
|
||||||
"persistent_notification"
|
"persistent_notification"
|
||||||
"person"
|
"person"
|
||||||
|
"philips_js"
|
||||||
"plaato"
|
"plaato"
|
||||||
"plugwise"
|
"plugwise"
|
||||||
"prometheus"
|
"prometheus"
|
||||||
|
@ -3021,6 +3021,8 @@ in {
|
|||||||
|
|
||||||
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
|
||||||
|
|
||||||
|
ha-philipsjs = callPackage ../development/python-modules/ha-philipsjs{ };
|
||||||
|
|
||||||
halo = callPackage ../development/python-modules/halo { };
|
halo = callPackage ../development/python-modules/halo { };
|
||||||
|
|
||||||
handout = callPackage ../development/python-modules/handout { };
|
handout = callPackage ../development/python-modules/handout { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user