Merge pull request #299472 from r-ryantm/auto-update/dvc-with-remotes

dvc-with-remotes: 3.48.4 -> 3.49.0

authored by Fabian Affolter and committed by GitHub 41ad1827 8689db56

+6 -6
+6 -6
pkgs/development/python-modules/dvc/default.nix
··· 57 57 58 58 buildPythonPackage rec { 59 59 pname = "dvc"; 60 - version = "3.48.4"; 60 + version = "3.49.0"; 61 61 pyproject = true; 62 62 63 63 disabled = pythonOlder "3.8"; ··· 66 66 owner = "iterative"; 67 67 repo = "dvc"; 68 68 rev = "refs/tags/${version}"; 69 - hash = "sha256-vO+i0BU8mQuLfgb1rcGRmlb8gpHsRxgdwuJHRERA4Pw="; 69 + hash = "sha256-Qu2+zTcTIPxLRZn1GB3Q6465kSEAuN+wessBVgxEdFU="; 70 70 }; 71 71 72 72 pythonRelaxDeps = [ ··· 76 76 77 77 postPatch = '' 78 78 substituteInPlace dvc/analytics.py \ 79 - --replace 'enabled = not os.getenv(DVC_NO_ANALYTICS)' 'enabled = False' 79 + --replace-fail 'enabled = not os.getenv(DVC_NO_ANALYTICS)' 'enabled = False' 80 80 substituteInPlace dvc/daemon.py \ 81 81 --subst-var-by dvc "$out/bin/dcv" 82 82 ''; 83 83 84 - nativeBuildInputs = [ 84 + build-system = [ 85 85 pythonRelaxDepsHook 86 86 setuptools-scm 87 87 ]; 88 88 89 - propagatedBuildInputs = [ 89 + dependencies = [ 90 90 appdirs 91 91 colorama 92 92 configobj ··· 166 166 167 167 meta = with lib; { 168 168 description = "Version Control System for Machine Learning Projects"; 169 - mainProgram = "dvc"; 170 169 homepage = "https://dvc.org"; 171 170 changelog = "https://github.com/iterative/dvc/releases/tag/${version}"; 172 171 license = licenses.asl20; 173 172 maintainers = with maintainers; [ cmcdragonkai fab ]; 173 + mainProgram = "dvc"; 174 174 }; 175 175 }