python311Packages.dvc-azure 0 -> 1 attrpath: python311Packages.dvc-azure Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/r1lhzy092cnbk2jmcyr9fcws3v5biwmf-packages.json.drv building '/nix/store/r1lhzy092cnbk2jmcyr9fcws3v5biwmf-packages.json.drv'... Going to be running update for following packages: - python3.11-dvc-azure-3.0.1 Press Enter key to continue... Running update for: - python3.11-dvc-azure-3.0.1: UPDATING ... - python3.11-dvc-azure-3.0.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/dvc-azure/default.nix b/pkgs/development/python-modules/dvc-azure/default.nix index 339e36fc0489..dc166c55027e 100644 --- a/pkgs/development/python-modules/dvc-azure/default.nix +++ b/pkgs/development/python-modules/dvc-azure/default.nix @@ -11,12 +11,12 @@ buildPythonPackage rec { pname = "dvc-azure"; - version = "3.0.1"; + version = "3.1.0"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-TB7yY5b2AWBFt8+AnxyKyP6hoXi6cdHVjtffapRVfHc="; + hash = "sha256-UsvHDVQUtQIZs9sKFvaK0l2rp24/Igrr5OSbPGSYriA="; }; # Prevent circular dependency No auto update branch exists Old version 3.0.1" not present in staging derivation file with contents: { lib , adlfs , azure-identity , buildPythonPackage , dvc-objects , fetchPypi , knack , pythonRelaxDepsHook , setuptools-scm }: buildPythonPackage rec { pname = "dvc-azure"; version = "3.1.0"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-UsvHDVQUtQIZs9sKFvaK0l2rp24/Igrr5OSbPGSYriA="; }; # Prevent circular dependency pythonRemoveDeps = [ "dvc" ]; nativeBuildInputs = [ setuptools-scm pythonRelaxDepsHook ]; propagatedBuildInputs = [ adlfs azure-identity dvc-objects knack ]; # Network access is needed for tests doCheck = false; # Circular dependency # pythonImportsCheck = [ # "dvc_azure" # ]; meta = with lib; { description = "Azure plugin for dvc"; homepage = "https://pypi.org/project/dvc-azure/${version}"; changelog = "https://github.com/iterative/dvc-azure/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ melling ]; }; }