From 7f1c6517bb2edbb52fccd523a222a124041f5ad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 16 Nov 2025 09:25:42 -0800 Subject: [PATCH] python3Packages.adguardhome: 0.7.0 -> 0.8.1 Diff: https://github.com/frenck/python-adguardhome/compare/v0.7.0...v0.8.1 Changelog: https://github.com/frenck/python-adguardhome/releases/tag/v0.8.0 https://github.com/frenck/python-adguardhome/releases/tag/v0.8.1 --- .../python-modules/adguardhome/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/adguardhome/default.nix b/pkgs/development/python-modules/adguardhome/default.nix index af0172724753..8165545c3052 100644 --- a/pkgs/development/python-modules/adguardhome/default.nix +++ b/pkgs/development/python-modules/adguardhome/default.nix @@ -8,22 +8,19 @@ pytest-asyncio, pytest-cov-stub, pytestCheckHook, - pythonOlder, yarl, }: buildPythonPackage rec { pname = "adguardhome"; - version = "0.7.0"; + version = "0.8.1"; pyproject = true; - disabled = pythonOlder "3.11"; - src = fetchFromGitHub { owner = "frenck"; repo = "python-${pname}"; tag = "v${version}"; - hash = "sha256-n55G6ulKcgSSrgPk70D52OO9fp3WURlcRhJQUKrZ1Nk="; + hash = "sha256-pc7UfR/0mQZ98FyomQErz5hePHy6KE2h9UhJ9lFGtFA="; }; postPatch = '' @@ -49,11 +46,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "adguardhome" ]; - meta = with lib; { + meta = { description = "Python client for the AdGuard Home API"; homepage = "https://github.com/frenck/python-adguardhome"; changelog = "https://github.com/frenck/python-adguardhome/releases/tag/v${version}"; - license = licenses.mit; - maintainers = with maintainers; [ jamiemagee ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ jamiemagee ]; }; }