From 6ade8b16d4c80d16a9bcfefc8923dafb0844ae1b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 21 Jun 2025 16:08:50 +0200 Subject: [PATCH] python313Packages.python-bsblan: 2.1.0 -> 2.2.5 Changelog: https://github.com/liudger/python-bsblan/releases/tag/v2.2.5 --- pkgs/development/python-modules/python-bsblan/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/python-bsblan/default.nix b/pkgs/development/python-modules/python-bsblan/default.nix index a69e49c94890..4e654bbbc2c4 100644 --- a/pkgs/development/python-modules/python-bsblan/default.nix +++ b/pkgs/development/python-modules/python-bsblan/default.nix @@ -6,10 +6,10 @@ backoff, buildPythonPackage, fetchFromGitHub, + hatchling, mashumaro, orjson, packaging, - poetry-core, pytest-asyncio, pytest-cov-stub, pytest-mock, @@ -20,7 +20,7 @@ buildPythonPackage rec { pname = "python-bsblan"; - version = "2.1.0"; + version = "2.2.5"; pyproject = true; disabled = pythonOlder "3.12"; @@ -29,7 +29,7 @@ buildPythonPackage rec { owner = "liudger"; repo = "python-bsblan"; tag = "v${version}"; - hash = "sha256-HaB1ypC2IkSEnM5Ek583CFvwWt1nm1gWUdoh5MH09YQ="; + hash = "sha256-kPkKgjze3ohaIaDax3h66JWw5tY+3S0N+lPqXSFFcRY="; }; postPatch = '' @@ -38,7 +38,7 @@ buildPythonPackage rec { env.PACKAGE_VERSION = version; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; pythonRelaxDeps = [ "async-timeout" ];