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

python310Packages.pytado: 0.16.0 -> 0.17.2
This commit is contained in:
Fabian Affolter 2023-08-31 10:08:15 +02:00 committed by GitHub
commit b54b40f7b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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; [ ];
};
}