From c09b89c293e63c7eaa2e85483c022217e1f85ce8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Jan 2023 00:29:08 +0100 Subject: [PATCH 1/2] python310Packages.accuweather: add changelog to meta --- pkgs/development/python-modules/accuweather/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/accuweather/default.nix b/pkgs/development/python-modules/accuweather/default.nix index c5040b0feace..09383d8a4436 100644 --- a/pkgs/development/python-modules/accuweather/default.nix +++ b/pkgs/development/python-modules/accuweather/default.nix @@ -20,7 +20,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "bieniu"; repo = pname; - rev = version; + rev = "refs/tags/${version}"; hash = "sha256-NnDpSOEIqPuPLIr0Ty6yjrs9WRKyhykcdyiRPB/cHEw="; }; @@ -50,6 +50,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python wrapper for getting weather data from AccuWeather servers"; homepage = "https://github.com/bieniu/accuweather"; + changelog = "https://github.com/bieniu/accuweather/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ jamiemagee ]; }; From 678a5e260945d8a2e47538bfdc5310b777747182 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 8 Jan 2023 00:30:10 +0100 Subject: [PATCH 2/2] python310Packages.accuweather: 0.4.0 -> 0.5.0 Diff: https://github.com/bieniu/accuweather/compare/refs/tags/0.4.0...0.5.0 Changelog: https://github.com/bieniu/accuweather/releases/tag/0.5.0 --- pkgs/development/python-modules/accuweather/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/accuweather/default.nix b/pkgs/development/python-modules/accuweather/default.nix index 09383d8a4436..4e86352346a3 100644 --- a/pkgs/development/python-modules/accuweather/default.nix +++ b/pkgs/development/python-modules/accuweather/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "accuweather"; - version = "0.4.0"; + version = "0.5.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "bieniu"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-NnDpSOEIqPuPLIr0Ty6yjrs9WRKyhykcdyiRPB/cHEw="; + hash = "sha256-v4mFvW+p0g+5IeZT8o0Z60MafHyYZ62d4lNH27wlAeI="; }; postPatch = ''