python310Packages.tox 0 -> 1 attrpath: python310Packages.tox 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/83zjqbkq8325yyr6axw3z0gdjpr3rcpr-packages.json.drv building '/nix/store/83zjqbkq8325yyr6axw3z0gdjpr3rcpr-packages.json.drv'... Going to be running update for following packages: - python3.10-tox-4.11.3 Press Enter key to continue... Running update for: - python3.10-tox-4.11.3: UPDATING ... - python3.10-tox-4.11.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/tox/default.nix b/pkgs/development/python-modules/tox/default.nix index 1b0bf1755ab7..ae9fb9bc86ac 100644 --- a/pkgs/development/python-modules/tox/default.nix +++ b/pkgs/development/python-modules/tox/default.nix @@ -24,14 +24,14 @@ buildPythonPackage rec { pname = "tox"; - version = "4.11.3"; + version = "4.11.4"; format = "pyproject"; src = fetchFromGitHub { owner = "tox-dev"; repo = "tox"; rev = "refs/tags/${version}"; - hash = "sha256-VLoWRAiQ1TP9S0f8TKwQ0H2Lgemd+dTzSM+TjhioDMk="; + hash = "sha256-pZmT8392YuHzCrAquPpveByYw3x6bkMGCUToCAqAGc8="; }; postPatch = '' No auto update branch exists Old version 4.11.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , pythonOlder , packaging , pluggy , py , six , virtualenv , setuptools-scm , toml , tomli , filelock , hatchling , hatch-vcs , platformdirs , pyproject-api , colorama , chardet , cachetools , testers , tox }: buildPythonPackage rec { pname = "tox"; version = "4.11.4"; format = "pyproject"; src = fetchFromGitHub { owner = "tox-dev"; repo = "tox"; rev = "refs/tags/${version}"; hash = "sha256-pZmT8392YuHzCrAquPpveByYw3x6bkMGCUToCAqAGc8="; }; postPatch = '' substituteInPlace pyproject.toml \ --replace "packaging>=22" "packaging" ''; nativeBuildInputs = [ hatchling hatch-vcs ]; propagatedBuildInputs = [ cachetools chardet colorama filelock packaging platformdirs pluggy py pyproject-api six toml virtualenv ] ++ lib.optionals (pythonOlder "3.11") [ tomli ]; doCheck = false; # infinite recursion via devpi-client passthru.tests = { version = testers.testVersion { package = tox; }; }; meta = with lib; { changelog = "https://github.com/tox-dev/tox/releases/tag/${version}"; description = "A generic virtualenv management and test command line tool"; homepage = "https://github.com/tox-dev/tox"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }