python3Packages.solarlog-cli: 0.6.1 -> 0.7.0 (#477709)

This commit is contained in:
dotlambda
2026-01-07 14:37:15 +00:00
committed by GitHub
2 changed files with 5 additions and 3 deletions
@@ -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 ];
@@ -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";