python3Packages.spython: 0.3.14 -> 0.3.15 (#471247)

This commit is contained in:
Fabian Affolter
2025-12-16 09:08:45 +00:00
committed by GitHub
@@ -4,21 +4,18 @@
fetchFromGitHub,
setuptools,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "spython";
version = "0.3.14";
version = "0.3.15";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "singularityhub";
repo = "singularity-cli";
tag = version;
hash = "sha256-PNMzqnKb691wcd8aGSleqHOcsUrahl8e0r5s5ek5GmQ=";
hash = "sha256-XYiudDXXiX0izFZZpQb71DBg/wRKjeupvKHixGFVuKM=";
};
postPatch = ''
@@ -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";