From 9226e4e2196cceb4f97a44b9b46717966ffa79c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 4 Mar 2025 19:03:50 -0800 Subject: [PATCH] python313Packages.nexia: 2.1.0 -> 2.2.1 Diff: https://github.com/bdraco/nexia/compare/refs/tags/2.1.0...2.2.1 Changelog: https://github.com/bdraco/nexia/releases/tag/2.2.1 --- pkgs/development/python-modules/nexia/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/nexia/default.nix b/pkgs/development/python-modules/nexia/default.nix index de973027754f..c76c757fcd91 100644 --- a/pkgs/development/python-modules/nexia/default.nix +++ b/pkgs/development/python-modules/nexia/default.nix @@ -4,6 +4,7 @@ buildPythonPackage, orjson, fetchFromGitHub, + propcache, pytest-asyncio, pytestCheckHook, pythonOlder, @@ -13,7 +14,7 @@ buildPythonPackage rec { pname = "nexia"; - version = "2.1.0"; + version = "2.2.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -22,19 +23,15 @@ buildPythonPackage rec { owner = "bdraco"; repo = "nexia"; tag = version; - hash = "sha256-bW3eFPs7sX3Z5ZH87orIg0HICXQiFtLqyLKFgpSCzJ0="; + hash = "sha256-4UcyCyqK5sEoQNaAWnD+FIEjA+56NKez5wXCQMO8esM="; }; - postPatch = '' - substituteInPlace pyproject.toml \ - --replace '"setuptools>=75.8.0"' "" - ''; - build-system = [ setuptools ]; dependencies = [ - orjson aiohttp + orjson + propcache ]; nativeCheckInputs = [