Merge pull request #116362 from fabaff/bump-async-upnp-client
python3Packages.evohome-async: init at 0.3.8
This commit is contained in:
commit
41b5cb0a7c
34
pkgs/development/python-modules/evohome-async/default.nix
Normal file
34
pkgs/development/python-modules/evohome-async/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "evohome-async";
|
||||||
|
version = "0.3.8";
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zxdavb";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "04xy72k79cnb8pc19v5jzkc0djazfm6pbm10ysphx06ndwvxr9mn";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "evohomeasync2" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python client for connecting to Honeywell's TCC RESTful API";
|
||||||
|
homepage = "https://github.com/zxdavb/evohome-async";
|
||||||
|
license = with licenses; [ asl20 ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -236,7 +236,7 @@
|
|||||||
"etherscan" = ps: with ps; [ ]; # missing inputs: python-etherscan-api
|
"etherscan" = ps: with ps; [ ]; # missing inputs: python-etherscan-api
|
||||||
"eufy" = ps: with ps; [ ]; # missing inputs: lakeside
|
"eufy" = ps: with ps; [ ]; # missing inputs: lakeside
|
||||||
"everlights" = ps: with ps; [ pyeverlights ];
|
"everlights" = ps: with ps; [ pyeverlights ];
|
||||||
"evohome" = ps: with ps; [ ]; # missing inputs: evohome-async
|
"evohome" = ps: with ps; [ evohome-async ];
|
||||||
"ezviz" = ps: with ps; [ ]; # missing inputs: pyezviz
|
"ezviz" = ps: with ps; [ ]; # missing inputs: pyezviz
|
||||||
"faa_delays" = ps: with ps; [ faadelays ];
|
"faa_delays" = ps: with ps; [ faadelays ];
|
||||||
"facebook" = ps: with ps; [ ];
|
"facebook" = ps: with ps; [ ];
|
||||||
|
@ -2186,6 +2186,8 @@ in {
|
|||||||
|
|
||||||
evernote = callPackage ../development/python-modules/evernote { };
|
evernote = callPackage ../development/python-modules/evernote { };
|
||||||
|
|
||||||
|
evohome-async = callPackage ../development/python-modules/evohome-async { };
|
||||||
|
|
||||||
ewmh = callPackage ../development/python-modules/ewmh { };
|
ewmh = callPackage ../development/python-modules/ewmh { };
|
||||||
|
|
||||||
exdown = callPackage ../development/python-modules/exdown { };
|
exdown = callPackage ../development/python-modules/exdown { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user