Merge pull request #109291 from fabaff/hydrawiser

This commit is contained in:
Sandro 2021-01-14 07:34:33 +01:00 committed by GitHub
commit d9d3cb64ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 46 additions and 1 deletions

View File

@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-cov
, pytestCheckHook
, pythonOlder
, pyyaml
, requests
, requests-mock
}:
buildPythonPackage rec {
pname = "hydrawiser";
version = "0.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "ptcryan";
repo = pname;
rev = "v${version}";
sha256 = "161hazlpvd71xcl2ja86560wm5lnrjv210ki3ji37l6c6gwmhjdj";
};
propagatedBuildInputs = [ requests ];
checkInputs = [
pytest-asyncio
pytest-cov
pytestCheckHook
requests
requests-mock
];
pythonImportsCheck = [ "hydrawiser" ];
meta = with lib; {
description = "Python library for Hydrawise API";
homepage = "https://github.com/ptcryan/hydrawiser";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -367,7 +367,7 @@
"humidifier" = ps: with ps; [ ];
"hunterdouglas_powerview" = ps: with ps; [ ]; # missing inputs: aiopvapi
"hvv_departures" = ps: with ps; [ ]; # missing inputs: pygti
"hydrawise" = ps: with ps; [ ]; # missing inputs: hydrawiser
"hydrawise" = ps: with ps; [ hydrawiser ];
"hyperion" = ps: with ps; [ ]; # missing inputs: hyperion-py
"iammeter" = ps: with ps; [ ]; # missing inputs: iammeter
"iaqualink" = ps: with ps; [ ]; # missing inputs: iaqualink

View File

@ -2954,6 +2954,8 @@ in {
hydra-check = callPackage ../development/python-modules/hydra-check { };
hydrawiser = callPackage ../development/python-modules/hydrawiser { };
hypchat = callPackage ../development/python-modules/hypchat { };
hyperframe = callPackage ../development/python-modules/hyperframe { };