From 0baf2789a8b632d11fc3557481c2ae6233325399 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 6 Aug 2025 21:17:07 +0200 Subject: [PATCH] python3Packages.pyblu: 2.0.1 -> 2.0.4 https://github.com/LouisChrist/pyblu/releases/tag/v2.0.4 --- pkgs/development/python-modules/pyblu/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyblu/default.nix b/pkgs/development/python-modules/pyblu/default.nix index 24e65fcfdd13..5ba66443feda 100644 --- a/pkgs/development/python-modules/pyblu/default.nix +++ b/pkgs/development/python-modules/pyblu/default.nix @@ -3,28 +3,28 @@ aioresponses, buildPythonPackage, fetchFromGitHub, + hatchling, lib, lxml, - poetry-core, pytest-asyncio, pytestCheckHook, }: buildPythonPackage rec { pname = "pyblu"; - version = "2.0.1"; + version = "2.0.4"; pyproject = true; src = fetchFromGitHub { owner = "LouisChrist"; repo = "pyblu"; tag = "v${version}"; - hash = "sha256-4dWRz7KPLgjN57U/jsm6VCqzkzfMY5yuHL0ZSBeALyI="; + hash = "sha256-nzTqakEMl9gywIQpC9OR0xiqZzawU5RxOx3NQT+CiFc="; }; pythonRelaxDeps = [ "aiohttp" ]; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ aiohttp