From 1c87bcf3d58a30b9badfb3e42375fe4e5bc13400 Mon Sep 17 00:00:00 2001 From: PerchunPak Date: Mon, 4 Aug 2025 07:23:37 +0200 Subject: [PATCH] python3Plugins.nixpkgs-updaters-library: 1.2.0 -> 3.0.0 --- .../nixpkgs-updaters-library/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/nixpkgs-updaters-library/default.nix b/pkgs/development/python-modules/nixpkgs-updaters-library/default.nix index 3e3a8327493f..30ef74dbe66e 100644 --- a/pkgs/development/python-modules/nixpkgs-updaters-library/default.nix +++ b/pkgs/development/python-modules/nixpkgs-updaters-library/default.nix @@ -9,18 +9,19 @@ # dependencies aiohttp, - attrs, frozendict, inject, + joblib, loguru, nix, nix-prefetch-git, - nonbloat-db, nurl, platformdirs, + pydantic, typer, # tests + writableTmpDirAsHomeHook, pytestCheckHook, aioresponses, pytest-asyncio, @@ -29,16 +30,16 @@ }: buildPythonPackage rec { pname = "nixpkgs-updaters-library"; - version = "1.2.0"; + version = "3.0.0"; pyproject = true; - disabled = pythonOlder "3.12"; + disabled = pythonOlder "3.13"; src = fetchFromGitHub { owner = "PerchunPak"; repo = "nixpkgs-updaters-library"; tag = "v${version}"; - hash = "sha256-MCMqqAGl6OTOapC3K0DNTOmg2Lv2KqXenEgB5sIZR5U="; + hash = "sha256-0N88valEw+QElMjy84TBKGuqqh9anKhHdW0jQfQ4qd4="; }; postPatch = '' @@ -52,18 +53,17 @@ buildPythonPackage rec { dependencies = [ aiohttp - attrs frozendict inject + joblib loguru - nonbloat-db platformdirs + pydantic typer - nix-prefetch-git - nurl ]; nativeCheckInputs = [ + writableTmpDirAsHomeHook aioresponses pytest-asyncio pytest-cov-stub