From 96ef4858d411bee0395be932e2dea7659f4f9e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 29 Apr 2026 12:59:34 -0700 Subject: [PATCH] python3Packages.blebox-uniapi: 2.5.0 -> 2.5.2 Diff: https://github.com/blebox/blebox_uniapi/compare/v2.5.0...v2.5.2 Changelog: https://github.com/blebox/blebox_uniapi/blob/v2.5.2/HISTORY.rst --- .../python-modules/blebox-uniapi/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/blebox-uniapi/default.nix b/pkgs/development/python-modules/blebox-uniapi/default.nix index 1defc1f5233d..5ea12bfc5043 100644 --- a/pkgs/development/python-modules/blebox-uniapi/default.nix +++ b/pkgs/development/python-modules/blebox-uniapi/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, setuptools, aiohttp, - semver, deepmerge, jmespath, pytest-asyncio, @@ -13,14 +12,14 @@ buildPythonPackage rec { pname = "blebox-uniapi"; - version = "2.5.0"; + version = "2.5.2"; pyproject = true; src = fetchFromGitHub { owner = "blebox"; repo = "blebox_uniapi"; tag = "v${version}"; - hash = "sha256-johTs1AGvC6mGasK87ijhBNbHb1m36Ep9TR8XPG35d0="; + hash = "sha256-+XdUteik6VDPXWgO9vDC34n2fIIDMUI5jTYzs/qCpLU="; }; postPatch = '' @@ -28,12 +27,11 @@ buildPythonPackage rec { --replace-fail "pytest-runner" "" ''; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ aiohttp jmespath - semver ]; nativeCheckInputs = [