Merge pull request #297824 from fabaff/gto-bump

python311Packages.gto: 1.7.0 -> 1.7.1

authored by Fabian Affolter and committed by GitHub a94c8098 9d570a76

+5 -5
+5 -5
pkgs/development/python-modules/gto/default.nix
··· 23 23 24 24 buildPythonPackage rec { 25 25 pname = "gto"; 26 - version = "1.7.0"; 26 + version = "1.7.1"; 27 27 pyproject = true; 28 28 29 29 disabled = pythonOlder "3.8"; ··· 32 32 owner = "iterative"; 33 33 repo = "gto"; 34 34 rev = "refs/tags/${version}"; 35 - hash = "sha256-dovCItMhPKRSPfbTzM5dbz8hdygqrLdUi6gS4+G10ks="; 35 + hash = "sha256-fUi+/PW05EvgTnoEv1Im1BjZ07VzpZhyW0EjhLUqJGI="; 36 36 }; 37 37 38 38 postPatch = '' 39 39 substituteInPlace pyproject.toml \ 40 - --replace ', "setuptools_scm_git_archive==1.4.1"' "" 40 + --replace-fail ', "setuptools_scm_git_archive==1.4.1"' "" 41 41 substituteInPlace setup.cfg \ 42 - --replace " --cov=gto --cov-report=term-missing --cov-report=xml" "" 42 + --replace-fail " --cov=gto --cov-report=term-missing --cov-report=xml" "" 43 43 ''; 44 44 45 45 nativeBuildInputs = [ ··· 88 88 89 89 meta = with lib; { 90 90 description = "Module for Git Tag Operations"; 91 - mainProgram = "gto"; 92 91 homepage = "https://github.com/iterative/gto"; 93 92 changelog = "https://github.com/iterative/gto/releases/tag/${version}"; 94 93 license = licenses.asl20; 95 94 maintainers = with maintainers; [ fab ]; 95 + mainProgram = "gto"; 96 96 }; 97 97 }