python312Packages.gto: 1.7.1 -> 1.7.2 (#361386)

authored by Nick Cao and committed by GitHub ec852ae4 eebd8dae

+8 -14
+8 -14
pkgs/development/python-modules/gto/default.nix
··· 8 8 funcy, 9 9 git, 10 10 pydantic, 11 + pytest-cov-stub, 11 12 pytest-mock, 12 13 pytest-test-utils, 13 14 pytestCheckHook, ··· 16 17 ruamel-yaml, 17 18 scmrepo, 18 19 semver, 19 - setuptools, 20 20 setuptools-scm, 21 + setuptools, 21 22 tabulate, 22 23 typer, 23 24 }: 24 25 25 26 buildPythonPackage rec { 26 27 pname = "gto"; 27 - version = "1.7.1"; 28 + version = "1.7.2"; 28 29 pyproject = true; 29 30 30 - disabled = pythonOlder "3.8"; 31 + disabled = pythonOlder "3.9"; 31 32 32 33 src = fetchFromGitHub { 33 34 owner = "iterative"; 34 35 repo = "gto"; 35 36 rev = "refs/tags/${version}"; 36 - hash = "sha256-fUi+/PW05EvgTnoEv1Im1BjZ07VzpZhyW0EjhLUqJGI="; 37 + hash = "sha256-8ht22RqiGWqDoBrZnX5p3KKOLVPRm1a54962qKlTK4Q="; 37 38 }; 38 39 39 - postPatch = '' 40 - substituteInPlace pyproject.toml \ 41 - --replace-fail ', "setuptools_scm_git_archive==1.4.1"' "" 42 - substituteInPlace setup.cfg \ 43 - --replace-fail " --cov=gto --cov-report=term-missing --cov-report=xml" "" 44 - ''; 45 - 46 - nativeBuildInputs = [ 47 - fastentrypoints 40 + build-system = [ 48 41 setuptools 49 42 setuptools-scm 50 43 ]; 51 44 52 - propagatedBuildInputs = [ 45 + dependencies = [ 53 46 entrypoints 54 47 funcy 55 48 pydantic ··· 64 57 nativeCheckInputs = [ 65 58 freezegun 66 59 git 60 + pytest-cov-stub 67 61 pytest-mock 68 62 pytest-test-utils 69 63 pytestCheckHook