summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-12-24 13:10:59 +0100
committerGitHub <noreply@github.com>2022-12-24 13:10:59 +0100
commite308995e2809599dfe58306b5ae37e8bbcb854b6 (patch)
tree0ce04c18768df7e56ac119ac46ef92b143123a69
parente9e19f832fa28c7f723b78ffd35652746db1b212 (diff)
parent4adb674709e97f8bc0abfbbbc475929b6d7a498d (diff)
Merge pull request #207545 from fabaff/volkszaehler-bump
python310Packages.volkszaehler: 0.3.2 -> 0.4.0
-rw-r--r--pkgs/development/python-modules/volkszaehler/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/volkszaehler/default.nix b/pkgs/development/python-modules/volkszaehler/default.nix
index cbc51d024a6e..dcb153ba98ca 100644
--- a/pkgs/development/python-modules/volkszaehler/default.nix
+++ b/pkgs/development/python-modules/volkszaehler/default.nix
@@ -8,16 +8,16 @@
buildPythonPackage rec {
pname = "volkszaehler";
- version = "0.3.2";
+ version = "0.4.0";
format = "setuptools";
- disabled = pythonOlder "3.8";
+ disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "home-assistant-ecosystem";
repo = "python-volkszaehler";
- rev = version;
- sha256 = "sha256-EiruMlhXvbUhCaDtHc3qCLbpp/KHp9rVpk2FmbR4A/k=";
+ rev = "refs/tags/${version}";
+ hash = "sha256-jX0nwBsBYU383LG8f08FVI7Lo9gnyPSQ0fiEF8dQc/M=";
};
propagatedBuildInputs = [
@@ -35,6 +35,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module for interacting with the Volkszahler API";
homepage = "https://github.com/home-assistant-ecosystem/python-volkszaehler";
+ changelog = "https://github.com/home-assistant-ecosystem/python-volkszaehler/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};