From 49f7ce497956224966335b853e2ef254558200a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 7 Jan 2026 03:22:25 -0800 Subject: [PATCH 1/2] python3Packages.solarlog-cli: 0.6.1 -> 0.7.0 Diff: https://github.com/dontinelli/solarlog_cli/compare/v0.6.1...v0.7.0 Changelog: https://github.com/dontinelli/solarlog_cli/releases/tag/v0.7.0 --- pkgs/development/python-modules/solarlog-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/solarlog-cli/default.nix b/pkgs/development/python-modules/solarlog-cli/default.nix index 161f1bd4411e..afc404da422c 100644 --- a/pkgs/development/python-modules/solarlog-cli/default.nix +++ b/pkgs/development/python-modules/solarlog-cli/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "solarlog-cli"; - version = "0.6.1"; + version = "0.7.0"; pyproject = true; disabled = pythonOlder "3.12"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "dontinelli"; repo = "solarlog_cli"; tag = "v${version}"; - hash = "sha256-mO/EPJ/CF3FM1tPnQOT9vit6WjV+jsWrTQ1MH2UUIIc="; + hash = "sha256-ryhC2RpLK7olglgOOmja4LzUpVyi6vt6vj3EntUYZx0="; }; build-system = [ hatchling ]; From dbbbfa54655b61031f9f28224f1fea1a4728171d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 7 Jan 2026 06:27:05 -0800 Subject: [PATCH 2/2] python314Packages.trio-asyncio: disable It fails to be imported with AttributeError: module 'asyncio.events' has no attribute 'BaseDefaultEventLoopPolicy' --- pkgs/development/python-modules/trio-asyncio/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/trio-asyncio/default.nix b/pkgs/development/python-modules/trio-asyncio/default.nix index cef3210be1eb..e29d707ab897 100644 --- a/pkgs/development/python-modules/trio-asyncio/default.nix +++ b/pkgs/development/python-modules/trio-asyncio/default.nix @@ -10,6 +10,7 @@ exceptiongroup, pytest-trio, pytestCheckHook, + pythonAtLeast, pythonOlder, }: @@ -18,7 +19,8 @@ buildPythonPackage rec { version = "0.15.0"; pyproject = true; - disabled = pythonOlder "3.8"; + # https://github.com/python-trio/trio-asyncio/issues/160 + disabled = pythonAtLeast "3.14"; src = fetchFromGitHub { owner = "python-trio";