Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pytado / default.nix
bloba54c89f348dd7c09331bf6e966e3b0c9a8317706
1 { lib, buildPythonPackage, fetchFromGitHub }:
3 buildPythonPackage rec {
4   pname = "PyTado";
5   version = "0.2.7";
7   src = fetchFromGitHub {
8     owner = "wmalgadey";
9     repo = pname;
10     # Upstream hasn't tagged this release yet. This commit fixes the build.
11     rev = "79a5dfdf75cd9a3e1a1ee8a8ff0d08923aebda7b";
12     sha256 = "14xdfw4913g4j4h576hjbigm7fiw8k0dc8s98gh2ag9xrc2ifgr0";
13   };
15   meta = with lib; {
16     description = "Python binding for Tado web API. Pythonize your central heating!";
17     homepage = "https://github.com/wmalgadey/PyTado";
18     license = licenses.gpl3;
19     maintainers = with maintainers; [ elseym ];
20   };