3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #281957 from r-ryantm/auto-update/python311Packages.python-tado

python311Packages.python-tado: 0.17.3 -> 0.17.4
This commit is contained in:
Nick Cao 2024-01-19 10:22:27 -05:00 committed by GitHub
commit bbe7d8f876
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,7 +8,7 @@
buildPythonPackage rec {
pname = "python-tado";
version = "0.17.3";
version = "0.17.4";
format = "setuptools";
disabled = pythonOlder "3.5";
@ -16,9 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "wmalgadey";
repo = "PyTado";
# https://github.com/wmalgadey/PyTado/issues/62
rev = "refs/tags/${version}";
hash = "sha256-whpNYiAb2cqKI4m0HJN2lPt51FLuEzrkrRTSWs6uznU=";
hash = "sha256-Wdd9HdsQjaYlL8knhMuO87+dom+aTsmrLRK0UdrpsbQ=";
};
propagatedBuildInputs = [
@ -30,9 +29,9 @@ buildPythonPackage rec {
];
meta = with lib; {
description =
"Python binding for Tado web API. Pythonize your central heating!";
description = "Python binding for Tado web API. Pythonize your central heating!";
homepage = "https://github.com/wmalgadey/PyTado";
changelog = "https://github.com/wmalgadey/PyTado/releases/tag/${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jamiemagee ];
};