Merge pull request #123181 from fabaff/ha-philipsjs

This commit is contained in:
Martin Weinelt 2021-05-17 17:47:19 +02:00 committed by GitHub
commit fda6185f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 49 additions and 1 deletions

View 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 ];
};
}

View File

@ -626,7 +626,7 @@
"pencom" = ps: with ps; [ ]; # missing inputs: pencompy
"persistent_notification" = ps: with ps; [ ];
"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
"pi_hole" = ps: with ps; [ hole ];
"picnic" = ps: with ps; [ python-picnic-api ];

View File

@ -336,6 +336,7 @@ in with py.pkgs; buildPythonApplication rec {
"panel_iframe"
"persistent_notification"
"person"
"philips_js"
"plaato"
"plugwise"
"prometheus"

View File

@ -3021,6 +3021,8 @@ in {
ha-ffmpeg = callPackage ../development/python-modules/ha-ffmpeg { };
ha-philipsjs = callPackage ../development/python-modules/ha-philipsjs{ };
halo = callPackage ../development/python-modules/halo { };
handout = callPackage ../development/python-modules/handout { };