From 4203c9abd453996671de9f78c65ba11560bc9207 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 3 Apr 2026 14:17:33 +0200 Subject: [PATCH 1/2] python3Packages.aiopegelonline: 0.1.1 -> 0.1.2 Changelog: https://github.com/mib1185/aiopegelonline/releases/tag/v0.1.2 --- pkgs/development/python-modules/aiopegelonline/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix index f650ced57f15..cd63d132d14e 100644 --- a/pkgs/development/python-modules/aiopegelonline/default.nix +++ b/pkgs/development/python-modules/aiopegelonline/default.nix @@ -11,19 +11,19 @@ buildPythonPackage rec { pname = "aiopegelonline"; - version = "0.1.1"; + version = "0.1.2"; pyproject = true; src = fetchFromGitHub { owner = "mib1185"; repo = "aiopegelonline"; tag = "v${version}"; - hash = "sha256-kDz+q4Y6ImgXbY7OSC/PKXPtKdktixW+ee51xHMX9o4="; + hash = "sha256-uV4qVCj28wgraWmWhyqN98/SaVDJFuJ30ugViKrl2us="; }; postPatch = '' substituteInPlace pyproject.toml \ - --replace-fail "setuptools==75.6.0" "setuptools" + --replace-fail "setuptools==82.0.1" "setuptools" ''; build-system = [ setuptools ]; From 503776d222a7844069aab3bbcaf3281d0909f172 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 3 Apr 2026 14:20:34 +0200 Subject: [PATCH 2/2] python3Packages.aiopegelonline: migrate to finalAttrs --- .../development/python-modules/aiopegelonline/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix index cd63d132d14e..7d9fe6f35ca4 100644 --- a/pkgs/development/python-modules/aiopegelonline/default.nix +++ b/pkgs/development/python-modules/aiopegelonline/default.nix @@ -9,7 +9,7 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "aiopegelonline"; version = "0.1.2"; pyproject = true; @@ -17,7 +17,7 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "mib1185"; repo = "aiopegelonline"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-uV4qVCj28wgraWmWhyqN98/SaVDJFuJ30ugViKrl2us="; }; @@ -41,8 +41,8 @@ buildPythonPackage rec { meta = { description = "Library to retrieve data from PEGELONLINE"; homepage = "https://github.com/mib1185/aiopegelonline"; - changelog = "https://github.com/mib1185/aiopegelonline/releases/tag/v${version}"; + changelog = "https://github.com/mib1185/aiopegelonline/releases/tag/v${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})