Merge pull request #109291 from fabaff/hydrawiser
This commit is contained in:
commit
d9d3cb64ad
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -367,7 +367,7 @@
|
||||||
"humidifier" = ps: with ps; [ ];
|
"humidifier" = ps: with ps; [ ];
|
||||||
"hunterdouglas_powerview" = ps: with ps; [ ]; # missing inputs: aiopvapi
|
"hunterdouglas_powerview" = ps: with ps; [ ]; # missing inputs: aiopvapi
|
||||||
"hvv_departures" = ps: with ps; [ ]; # missing inputs: pygti
|
"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
|
"hyperion" = ps: with ps; [ ]; # missing inputs: hyperion-py
|
||||||
"iammeter" = ps: with ps; [ ]; # missing inputs: iammeter
|
"iammeter" = ps: with ps; [ ]; # missing inputs: iammeter
|
||||||
"iaqualink" = ps: with ps; [ ]; # missing inputs: iaqualink
|
"iaqualink" = ps: with ps; [ ]; # missing inputs: iaqualink
|
||||||
|
|
|
@ -2954,6 +2954,8 @@ in {
|
||||||
|
|
||||||
hydra-check = callPackage ../development/python-modules/hydra-check { };
|
hydra-check = callPackage ../development/python-modules/hydra-check { };
|
||||||
|
|
||||||
|
hydrawiser = callPackage ../development/python-modules/hydrawiser { };
|
||||||
|
|
||||||
hypchat = callPackage ../development/python-modules/hypchat { };
|
hypchat = callPackage ../development/python-modules/hypchat { };
|
||||||
|
|
||||||
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
hyperframe = callPackage ../development/python-modules/hyperframe { };
|
||||||
|
|
Loading…
Reference in New Issue