Unverified Commit b54b40f7 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #252503 from r-ryantm/auto-update/python310Packages.pytado

python310Packages.pytado: 0.16.0 -> 0.17.2
parents 779bc051 6fe604d6
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -3,18 +3,21 @@
, fetchFromGitHub
, pytestCheckHook
, requests
, pythonOlder
}:

buildPythonPackage rec {
  pname = "pytado";
  version = "0.16.0";
  version = "0.17.2";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "wmalgadey";
    repo = "PyTado";
    # Upstream hasn't tagged 0.13.0 yet
    rev = "refs/tags/${version}";
    sha256 = "sha256-tpWr+VlkJ9svN9XtBIDEAos4uxYCl6njvUBPIJG++Yg=";
    sha256 = "sha256-w1qtSEpnZCs7+M/0Gywz9AeMxUzz2csHKm9SxBKzmz4=";
  };

  propagatedBuildInputs = [
@@ -32,7 +35,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python binding for Tado web API";
    homepage = "https://github.com/wmalgadey/PyTado";
    license = licenses.gpl3;
    changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${version}";
    license = licenses.gpl3Only;
    maintainers = with maintainers; [ ];
  };
}