summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-12 23:30:12 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-12 23:30:12 +0100
commitd62331efe321f0006e330d585add02ab96ea00a4 (patch)
tree99898e1a636b15f55aa8a4bdeadcee80c99cdf52 /pkgs/development/python-modules
parent39af68a70bbdbf2443479905de132270c20310ac (diff)
python310Packages.pyweatherflowrest: add changelog to meta
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pyweatherflowrest/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyweatherflowrest/default.nix b/pkgs/development/python-modules/pyweatherflowrest/default.nix
index b1384496325b..2dca787fdc31 100644
--- a/pkgs/development/python-modules/pyweatherflowrest/default.nix
+++ b/pkgs/development/python-modules/pyweatherflowrest/default.nix
@@ -16,8 +16,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "briis";
repo = pname;
- rev = "v${version}";
- sha256 = "1swyqdnvhwaigqhjn5a22gi8if4bl8alfrigln4qa0jl9z03kg09";
+ rev = "refs/tags/v${version}";
+ hash = "1swyqdnvhwaigqhjn5a22gi8if4bl8alfrigln4qa0jl9z03kg09";
};
nativeBuildInputs = [
@@ -44,6 +44,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python module to get data from WeatherFlow Weather Stations";
homepage = "https://github.com/briis/pyweatherflowrest";
+ changelog = "https://github.com/briis/pyweatherflowrest/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};