linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / tellduslive / default.nix
blob5a6a84af8392b6a4bc0f50e0fcb074fa03808a31
1 { lib
2 , buildPythonPackage
3 , docopt
4 , fetchFromGitHub
5 , requests
6 , requests_oauthlib
7 }:
9 buildPythonPackage rec {
10   pname = "tellduslive";
11   version = "0.10.11";
13   src = fetchFromGitHub {
14     owner = "molobrakos";
15     repo = pname;
16     rev = "v${version}";
17     sha256 = "0aqhj6fq2z2qb4jyk23ygjicf5nlj8lkya7blkyqb7jra5k1gyg0";
18   };
20   propagatedBuildInputs = [
21     docopt
22     requests
23     requests_oauthlib
24   ];
26   # Project has no tests
27   doCheck = false;
28   pythonImportsCheck = [ "tellduslive" ];
30   meta = with lib; {
31     description = "Python module to communicate with Telldus Live";
32     homepage = "https://github.com/molobrakos/tellduslive";
33     license = with licenses; [ unlicense ];
34     maintainers = with maintainers; [ fab ];
35   };