From 3e448c61b6fbdc834be7676347b499dc98d0cdde Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 23 Nov 2024 09:38:59 +0100 Subject: [PATCH] python311Packages.aiopegelonline: 0.0.10 -> 0.1.0 Diff: https://github.com/mib1185/aiopegelonline/compare/refs/tags/v0.0.10...v0.1.0 Changelog: https://github.com/mib1185/aiopegelonline/releases/tag/v0.1.0 --- .../python-modules/aiopegelonline/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiopegelonline/default.nix b/pkgs/development/python-modules/aiopegelonline/default.nix index 64d5cd987019..22155156a474 100644 --- a/pkgs/development/python-modules/aiopegelonline/default.nix +++ b/pkgs/development/python-modules/aiopegelonline/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "aiopegelonline"; - version = "0.0.10"; + version = "0.1.0"; pyproject = true; disabled = pythonOlder "3.9"; @@ -21,9 +21,14 @@ buildPythonPackage rec { owner = "mib1185"; repo = "aiopegelonline"; rev = "refs/tags/v${version}"; - hash = "sha256-nKuqAzT1O5n9X/fEUm+M2RdB4u7moUGQzFA7knSEpBs="; + hash = "sha256-gY/+hifDFjHlpGUx8jgEpfIztEDZezWywZlRvLRBoX4="; }; + postPatch = '' + substituteInPlace pyproject.toml \ + --replace-fail "setuptools==69.2.0" "setuptools" + ''; + build-system = [ setuptools ]; dependencies = [ aiohttp ];