linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / python-tado / default.nix
blob5562e411dd197286af179708113256072ff4ea69
1 { buildPythonPackage, fetchFromGitHub, lib, pytestCheckHook, pythonOlder, requests }:
3 buildPythonPackage rec {
4   pname = "python-tado";
5   version = "0.11.0";
7   disabled = pythonOlder "3.5";
9   src = fetchFromGitHub {
10     owner = "wmalgadey";
11     repo = "PyTado";
12     rev = version;
13     sha256 = "0fw4f9gqnhxwpxyb34qi8bl5pmzz13h4x3mdk903hhjyccanqncr";
14   };
16   propagatedBuildInputs = [ requests ];
17   checkInputs = [ pytestCheckHook ];
19   meta = with lib; {
20     description =
21       "Python binding for Tado web API. Pythonize your central heating!";
22     homepage = "https://github.com/wmalgadey/PyTado";
23     license = licenses.gpl3Plus;
24     maintainers = with maintainers; [ jamiemagee ];
25   };