From 4764f7a2ff15f496f4c5dcb44c60281added8ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 31 Oct 2025 09:50:05 -0700 Subject: [PATCH] python3Packages.aiovodafone: 1.2.1 -> 3.0.0 Diff: https://github.com/chemelli74/aiovodafone/compare/v1.2.1...v3.0.0 Changelog: https://github.com/chemelli74/aiovodafone/blob/v3.0.0/CHANGELOG.md --- .../python-modules/aiovodafone/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aiovodafone/default.nix b/pkgs/development/python-modules/aiovodafone/default.nix index 58544c789d9d..1d804579bae1 100644 --- a/pkgs/development/python-modules/aiovodafone/default.nix +++ b/pkgs/development/python-modules/aiovodafone/default.nix @@ -2,9 +2,11 @@ lib, aiohttp, beautifulsoup4, - colorlog, buildPythonPackage, + colorlog, + cryptography, fetchFromGitHub, + orjson, poetry-core, pytest-cov-stub, pytestCheckHook, @@ -13,7 +15,7 @@ buildPythonPackage rec { pname = "aiovodafone"; - version = "1.2.1"; + version = "3.0.0"; pyproject = true; disabled = pythonOlder "3.12"; @@ -22,7 +24,7 @@ buildPythonPackage rec { owner = "chemelli74"; repo = "aiovodafone"; tag = "v${version}"; - hash = "sha256-i4zsOHauKPq2b9LfWd4HYe04oOambbibHfNrJLiSSYw="; + hash = "sha256-JeMB7K2NURvMPgCZRNAFt9ThIu4LDq3WlmAXsgm1CKs="; }; build-system = [ poetry-core ]; @@ -30,7 +32,9 @@ buildPythonPackage rec { dependencies = [ aiohttp beautifulsoup4 + cryptography colorlog + orjson ]; nativeCheckInputs = [ @@ -40,11 +44,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "aiovodafone" ]; - meta = with lib; { + meta = { description = "Library to control Vodafon Station"; homepage = "https://github.com/chemelli74/aiovodafone"; changelog = "https://github.com/chemelli74/aiovodafone/blob/${src.tag}/CHANGELOG.md"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; }