From b42a096798142bb1edadd722b583497a70b7e706 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 16 Dec 2025 04:27:55 +0000 Subject: [PATCH 1/2] python3Packages.spython: 0.3.14 -> 0.3.15 --- pkgs/development/python-modules/spython/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/spython/default.nix b/pkgs/development/python-modules/spython/default.nix index d14cd4f71f5e..c17415c9dc85 100644 --- a/pkgs/development/python-modules/spython/default.nix +++ b/pkgs/development/python-modules/spython/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "spython"; - version = "0.3.14"; + version = "0.3.15"; pyproject = true; disabled = pythonOlder "3.9"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "singularityhub"; repo = "singularity-cli"; tag = version; - hash = "sha256-PNMzqnKb691wcd8aGSleqHOcsUrahl8e0r5s5ek5GmQ="; + hash = "sha256-XYiudDXXiX0izFZZpQb71DBg/wRKjeupvKHixGFVuKM="; }; postPatch = '' From 2c3fa37be3c83c3b7adac8c2c4688482992761fa Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 16 Dec 2025 10:00:08 +0100 Subject: [PATCH 2/2] python313Packages.spython: modernize --- pkgs/development/python-modules/spython/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/spython/default.nix b/pkgs/development/python-modules/spython/default.nix index c17415c9dc85..fe4d698358b7 100644 --- a/pkgs/development/python-modules/spython/default.nix +++ b/pkgs/development/python-modules/spython/default.nix @@ -4,7 +4,6 @@ fetchFromGitHub, setuptools, pytestCheckHook, - pythonOlder, }: buildPythonPackage rec { @@ -12,8 +11,6 @@ buildPythonPackage rec { version = "0.3.15"; pyproject = true; - disabled = pythonOlder "3.9"; - src = fetchFromGitHub { owner = "singularityhub"; repo = "singularity-cli"; @@ -47,7 +44,7 @@ buildPythonPackage rec { meta = { description = "Streamlined singularity python client (spython) for singularity"; homepage = "https://github.com/singularityhub/singularity-cli"; - changelog = "https://github.com/singularityhub/singularity-cli/blob/${version}/CHANGELOG.md"; + changelog = "https://github.com/singularityhub/singularity-cli/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mpl20; maintainers = with lib.maintainers; [ fab ]; mainProgram = "spython";