dvc-with-remotes 2.17.0 -> 2.38.1 https://github.com/iterative/dvc/releases attrpath: dvc-with-remotes Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/9q3igrsnn3g1gi8yd9sraz5lxj1l9zq8-packages.json.drv building '/nix/store/9q3igrsnn3g1gi8yd9sraz5lxj1l9zq8-packages.json.drv'... Going to be running update for following packages: - dvc-2.17.0 Press Enter key to continue... Running update for: - dvc-2.17.0: UPDATING ... - dvc-2.17.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/applications/version-management/dvc/default.nix b/pkgs/applications/version-management/dvc/default.nix index f76f413ea66..35cc52c26fc 100644 --- a/pkgs/applications/version-management/dvc/default.nix +++ b/pkgs/applications/version-management/dvc/default.nix @@ -10,14 +10,14 @@ python3.pkgs.buildPythonApplication rec { pname = "dvc"; - version = "2.17.0"; + version = "2.38.1"; format = "setuptools"; src = fetchFromGitHub { owner = "iterative"; repo = pname; - rev = version; - hash = "sha256-2h+fy4KMxFrVtKJBtA1RmJDZv0OVm1BxO1akZzAw95Y="; + rev = "refs/tags/${version}"; + hash = "sha256-GJoPorv2tpmZW5Cqta1o9yic8FdHHQCUkO48hWReCG8="; }; postPatch = '' Old version "2.17.0"" not present in master derivation file with contents: { lib , python3 , fetchFromGitHub , fetchpatch , enableGoogle ? false , enableAWS ? false , enableAzure ? false , enableSSH ? false }: python3.pkgs.buildPythonApplication rec { pname = "dvc"; version = "2.17.0"; format = "setuptools"; src = fetchFromGitHub { owner = "iterative"; repo = pname; rev = version; hash = "sha256-2h+fy4KMxFrVtKJBtA1RmJDZv0OVm1BxO1akZzAw95Y="; }; postPatch = '' substituteInPlace setup.cfg \ --replace "grandalf==0.6" "grandalf" \ --replace "scmrepo==0.0.25" "scmrepo" \ --replace "pathspec>=0.9.0,<0.10.0" "pathspec" substituteInPlace dvc/daemon.py \ --subst-var-by dvc "$out/bin/dcv" ''; nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; propagatedBuildInputs = with python3.pkgs; [ aiohttp-retry appdirs colorama configobj dictdiffer diskcache distro dpath dvclive dvc-data dvc-render dvc-task flatten-dict flufl_lock funcy grandalf nanotime networkx packaging pathspec ply psutil pydot pygtrie pyparsing python-benedict requests rich ruamel-yaml scmrepo shortuuid shtab tabulate tomlkit tqdm typing-extensions voluptuous zc_lockfile ] ++ lib.optionals enableGoogle [ gcsfs google-cloud-storage ] ++ lib.optionals enableAWS [ aiobotocore boto3 s3fs ] ++ lib.optionals enableAzure [ azure-identity knack ] ++ lib.optionals enableSSH [ bcrypt ] ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ]; # Tests require access to real cloud services doCheck = false; meta = with lib; { description = "Version Control System for Machine Learning Projects"; homepage = "https://dvc.org"; license = licenses.asl20; maintainers = with maintainers; [ cmcdragonkai fab ]; }; }