From 5b18b0edf249ce42162a668842c295b371b57eec Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 24 May 2026 22:55:51 +0200 Subject: [PATCH] python3Packages.aiovodafone: 3.2.0 -> 3.3.0 Diff: https://github.com/chemelli74/aiovodafone/compare/v3.2.0...v3.3.0 Changelog: https://github.com/chemelli74/aiovodafone/blob/v3.3.0/CHANGELOG.md --- .../development/python-modules/aiovodafone/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aiovodafone/default.nix b/pkgs/development/python-modules/aiovodafone/default.nix index cb4b5a5beffc..d2484c3b03b6 100644 --- a/pkgs/development/python-modules/aiovodafone/default.nix +++ b/pkgs/development/python-modules/aiovodafone/default.nix @@ -3,35 +3,33 @@ aiohttp, beautifulsoup4, buildPythonPackage, - colorlog, cryptography, fetchFromGitHub, orjson, - poetry-core, pycryptodome, pytest-cov-stub, pytestCheckHook, segno, + setuptools, }: buildPythonPackage (finalAttrs: { pname = "aiovodafone"; - version = "3.2.0"; + version = "3.3.0"; pyproject = true; src = fetchFromGitHub { owner = "chemelli74"; repo = "aiovodafone"; tag = "v${finalAttrs.version}"; - hash = "sha256-CZz/rRRgZwP7gowYORkt8j99mU0CMgOX+M1JExvFNDI="; + hash = "sha256-KKd8dOabm/6YksBG6+51zYUsgiA4wFW6dGe2tiX3fQA="; }; - build-system = [ poetry-core ]; + build-system = [ setuptools ]; dependencies = [ aiohttp beautifulsoup4 - colorlog cryptography orjson pycryptodome