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