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