python3Packages.tellduslive: init at 0.10.11

This commit is contained in:
Fabian Affolter 2021-02-19 11:22:09 +01:00
parent ad4db3f4d8
commit 952b650b47
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, docopt
, fetchFromGitHub
, requests
, requests_oauthlib
}:
buildPythonPackage rec {
pname = "tellduslive";
version = "0.10.11";
src = fetchFromGitHub {
owner = "molobrakos";
repo = pname;
rev = "v${version}";
sha256 = "0aqhj6fq2z2qb4jyk23ygjicf5nlj8lkya7blkyqb7jra5k1gyg0";
};
propagatedBuildInputs = [
docopt
requests
requests_oauthlib
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "tellduslive" ];
meta = with lib; {
description = "Python module to communicate with Telldus Live";
homepage = "https://github.com/molobrakos/tellduslive";
license = with licenses; [ unlicense ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -7742,6 +7742,8 @@ in {
tensorly = callPackage ../development/python-modules/tensorly { };
tellduslive = callPackage ../development/python-modules/tellduslive { };
termcolor = callPackage ../development/python-modules/termcolor { };
terminado = callPackage ../development/python-modules/terminado { };