From 778b424177b3f73d97cda409c369726f509cb98e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 15 Nov 2025 20:02:41 +0000 Subject: [PATCH 1/2] python3Packages.aiopvapi: 3.2.1 -> 3.3.0 --- pkgs/development/python-modules/aiopvapi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiopvapi/default.nix b/pkgs/development/python-modules/aiopvapi/default.nix index a1a741040eac..769547cfaa2e 100644 --- a/pkgs/development/python-modules/aiopvapi/default.nix +++ b/pkgs/development/python-modules/aiopvapi/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { pname = "aiopvapi"; - version = "3.2.1"; + version = "3.3.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "sander76"; repo = "aio-powerview-api"; tag = "v${version}"; - hash = "sha256-DBpu1vjK0uYwXF1fbbdoeqCd3a6VdeClhsTGkbf8o7U="; + hash = "sha256-yystaH2HRsJoYh2aTpOBA7DLiC2xwpBUccHwmJ0FlaY="; }; build-system = [ setuptools ]; From d694391d5ba82b4fab65e23143090c2902d38446 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 15 Nov 2025 23:25:48 +0100 Subject: [PATCH 2/2] python313Packages.aiopvapi: modernize --- pkgs/development/python-modules/aiopvapi/default.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/aiopvapi/default.nix b/pkgs/development/python-modules/aiopvapi/default.nix index 769547cfaa2e..38e01f33660c 100644 --- a/pkgs/development/python-modules/aiopvapi/default.nix +++ b/pkgs/development/python-modules/aiopvapi/default.nix @@ -4,7 +4,6 @@ buildPythonPackage, fetchFromGitHub, pytestCheckHook, - pythonOlder, setuptools, }: @@ -13,8 +12,6 @@ buildPythonPackage rec { version = "3.3.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "sander76"; repo = "aio-powerview-api"; @@ -38,8 +35,8 @@ buildPythonPackage rec { meta = with lib; { description = "Python API for the PowerView API"; homepage = "https://github.com/sander76/aio-powerview-api"; - changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/v${version}"; - license = with licenses; [ bsd3 ]; + changelog = "https://github.com/sander76/aio-powerview-api/releases/tag/${src.tag}"; + license = licenses.bsd3; maintainers = with maintainers; [ fab ]; }; }