python312Packages.spython: 0.3.12 -> 0.3.14 (#341962)

authored by

Fabian Affolter and committed by
GitHub
a3a8ca30 36e512b9

+5 -5
+5 -5
pkgs/development/python-modules/spython/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "spython"; 12 - version = "0.3.12"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.9"; ··· 18 owner = "singularityhub"; 19 repo = "singularity-cli"; 20 rev = "refs/tags/${version}"; 21 - hash = "sha256-fRtqOpDgVMYlVDwbPkrnpd7PT4fV+2WS6RmpJoxaKdQ="; 22 }; 23 24 postPatch = '' 25 substituteInPlace setup.py \ 26 - --replace '"pytest-runner"' "" 27 ''; 28 29 - nativeBuildInputs = [ setuptools ]; 30 31 nativeCheckInputs = [ pytestCheckHook ]; 32 ··· 46 47 meta = with lib; { 48 description = "Streamlined singularity python client (spython) for singularity"; 49 - mainProgram = "spython"; 50 homepage = "https://github.com/singularityhub/singularity-cli"; 51 changelog = "https://github.com/singularityhub/singularity-cli/blob/${version}/CHANGELOG.md"; 52 license = licenses.mpl20; 53 maintainers = with maintainers; [ fab ]; 54 }; 55 }
··· 9 10 buildPythonPackage rec { 11 pname = "spython"; 12 + version = "0.3.14"; 13 pyproject = true; 14 15 disabled = pythonOlder "3.9"; ··· 18 owner = "singularityhub"; 19 repo = "singularity-cli"; 20 rev = "refs/tags/${version}"; 21 + hash = "sha256-PNMzqnKb691wcd8aGSleqHOcsUrahl8e0r5s5ek5GmQ="; 22 }; 23 24 postPatch = '' 25 substituteInPlace setup.py \ 26 + --replace-fail '"pytest-runner"' "" 27 ''; 28 29 + build-system = [ setuptools ]; 30 31 nativeCheckInputs = [ pytestCheckHook ]; 32 ··· 46 47 meta = with lib; { 48 description = "Streamlined singularity python client (spython) for singularity"; 49 homepage = "https://github.com/singularityhub/singularity-cli"; 50 changelog = "https://github.com/singularityhub/singularity-cli/blob/${version}/CHANGELOG.md"; 51 license = licenses.mpl20; 52 maintainers = with maintainers; [ fab ]; 53 + mainProgram = "spython"; 54 }; 55 }