Merge pull request #113793 from fabaff/tuyaha
This commit is contained in:
commit
3d3500d796
30
pkgs/development/python-modules/tuyaha/default.nix
Normal file
30
pkgs/development/python-modules/tuyaha/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "tuyaha";
|
||||
version = "0.0.10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PaulAnnekov";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0n08mqrz76zv1cyqky6ibs6im1fqcywkiyvfmfabml0vzvr43awf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ requests ];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "tuyaha" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module with the Tuya API";
|
||||
homepage = "https://github.com/PaulAnnekov/tuyaha";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -865,7 +865,7 @@
|
||||
"travisci" = ps: with ps; [ ]; # missing inputs: TravisPy
|
||||
"trend" = ps: with ps; [ numpy ];
|
||||
"tts" = ps: with ps; [ aiohttp-cors mutagen ];
|
||||
"tuya" = ps: with ps; [ ]; # missing inputs: tuyaha
|
||||
"tuya" = ps: with ps; [ tuyaha ];
|
||||
"twentemilieu" = ps: with ps; [ ]; # missing inputs: twentemilieu
|
||||
"twilio" = ps: with ps; [ aiohttp-cors twilio ];
|
||||
"twilio_call" = ps: with ps; [ aiohttp-cors twilio ];
|
||||
|
@ -7991,6 +7991,8 @@ in {
|
||||
|
||||
tumpa = callPackage ../development/python-modules/tumpa { };
|
||||
|
||||
tuyaha = callPackage ../development/python-modules/tuyaha { };
|
||||
|
||||
tvdb_api = callPackage ../development/python-modules/tvdb_api { };
|
||||
|
||||
tvnamer = callPackage ../development/python-modules/tvnamer { };
|
||||
|
Loading…
Reference in New Issue
Block a user