python3Packages.tuyaha: init at 0.0.10
This commit is contained in:
parent
e59a33db58
commit
4c02c66275
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 ];
|
||||
};
|
||||
}
|
@ -7983,6 +7983,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