diff options
| author | Fabian Affolter <mail@fabian-affolter.ch> | 2026-01-18 00:54:09 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-18 00:54:09 +0000 |
| commit | 45973b20defefe1866dfa1543b6d3f7bf7b1558d (patch) | |
| tree | b931925f4dfa587db37eb28ecd9cab2c77fb8e23 | |
| parent | 38294447d9248846c1497fd31d4f66489b4448a1 (diff) | |
| parent | 7db786e769652dd44d2adee5d94e2fb290883b89 (diff) | |
python3Packages.growattserver: 1.7.1 -> 1.8.0 (#481181)
| -rw-r--r-- | pkgs/development/python-modules/growattserver/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/growattserver/default.nix b/pkgs/development/python-modules/growattserver/default.nix index a1ced89cd953..719ce3bd7989 100644 --- a/pkgs/development/python-modules/growattserver/default.nix +++ b/pkgs/development/python-modules/growattserver/default.nix @@ -6,16 +6,16 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "growattserver"; - version = "1.7.1"; + version = "1.8.0"; pyproject = true; src = fetchFromGitHub { owner = "indykoning"; repo = "PyPi_GrowattServer"; - tag = version; - hash = "sha256-rob2+uXuBD5Gf05rNFFEW210JxrTbWN7knk9Tnz7wOE="; + tag = finalAttrs.version; + hash = "sha256-2Jgz/wN0k6ni+4PbQwfDg3uMvYxv5N3BVgdARHqQ0Yc="; }; build-system = [ setuptools ]; @@ -30,8 +30,8 @@ buildPythonPackage rec { meta = { description = "Python package to retrieve information from Growatt units"; homepage = "https://github.com/indykoning/PyPi_GrowattServer"; - changelog = "https://github.com/indykoning/PyPi_GrowattServer/releases/tag/${src.tag}"; + changelog = "https://github.com/indykoning/PyPi_GrowattServer/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ fab ]; }; -} +}) |
