Merge pull request #108144 from fabaff/python-mystrom
python3Packages.python-mystrom: init at 2.0.0
This commit is contained in:
commit
4965fc7341
3 changed files with 48 additions and 1 deletions
45
pkgs/development/python-modules/python-mystrom/default.nix
Normal file
45
pkgs/development/python-modules/python-mystrom/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, aiohttp
|
||||||
|
, click
|
||||||
|
, requests
|
||||||
|
, setuptools
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "python-mystrom";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "050dkx29wrmdd8z7pmyk36k2ihpapqi4qmyb70bm6xl5l4jh4k7j";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
click
|
||||||
|
requests
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
# no tests are present
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pymystrom.bulb"
|
||||||
|
"pymystrom.pir"
|
||||||
|
"pymystrom.switch"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python API client for interacting with myStrom devices";
|
||||||
|
longDescription = ''
|
||||||
|
Asynchronous Python API client for interacting with myStrom devices.
|
||||||
|
There is support for bulbs, motion sensors, plugs and buttons.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/home-assistant-ecosystem/python-mystrom";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -522,7 +522,7 @@
|
||||||
"mycroft" = ps: with ps; [ ]; # missing inputs: mycroftapi
|
"mycroft" = ps: with ps; [ ]; # missing inputs: mycroftapi
|
||||||
"myq" = ps: with ps; [ ]; # missing inputs: pymyq
|
"myq" = ps: with ps; [ ]; # missing inputs: pymyq
|
||||||
"mysensors" = ps: with ps; [ aiohttp-cors paho-mqtt ]; # missing inputs: pymysensors
|
"mysensors" = ps: with ps; [ aiohttp-cors paho-mqtt ]; # missing inputs: pymysensors
|
||||||
"mystrom" = ps: with ps; [ aiohttp-cors ]; # missing inputs: python-mystrom
|
"mystrom" = ps: with ps; [ aiohttp-cors python-mystrom ];
|
||||||
"mythicbeastsdns" = ps: with ps; [ ]; # missing inputs: mbddns
|
"mythicbeastsdns" = ps: with ps; [ ]; # missing inputs: mbddns
|
||||||
"n26" = ps: with ps; [ ]; # missing inputs: n26
|
"n26" = ps: with ps; [ ]; # missing inputs: n26
|
||||||
"nad" = ps: with ps; [ ]; # missing inputs: nad_receiver
|
"nad" = ps: with ps; [ ]; # missing inputs: nad_receiver
|
||||||
|
|
|
@ -6049,6 +6049,8 @@ in {
|
||||||
|
|
||||||
python-multipart = callPackage ../development/python-modules/python-multipart { };
|
python-multipart = callPackage ../development/python-modules/python-multipart { };
|
||||||
|
|
||||||
|
python-mystrom = callPackage ../development/python-modules/python-mystrom { };
|
||||||
|
|
||||||
python-nest = callPackage ../development/python-modules/python-nest { };
|
python-nest = callPackage ../development/python-modules/python-nest { };
|
||||||
|
|
||||||
pythonnet = callPackage
|
pythonnet = callPackage
|
||||||
|
|
Loading…
Reference in a new issue