python312Packages.multidict 6.0.4 -> 6.0.5 https://github.com/aio-libs/multidict/releases attrpath: python312Packages.multidict 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/p9sarjw157d2m7av0x11fpdw919rzxbz-packages.json.drv building '/nix/store/p9sarjw157d2m7av0x11fpdw919rzxbz-packages.json.drv'... Going to be running update for following packages: - python3.12-multidict-6.0.4 Press Enter key to continue... Running update for: - python3.12-multidict-6.0.4: UPDATING ... - python3.12-multidict-6.0.4: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/multidict/default.nix b/pkgs/development/python-modules/multidict/default.nix index 79646183fa18..023967e7418d 100644 --- a/pkgs/development/python-modules/multidict/default.nix +++ b/pkgs/development/python-modules/multidict/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "multidict"; - version = "6.0.4"; + version = "6.0.5"; disabled = pythonOlder "3.7"; @@ -16,7 +16,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - hash = "sha256-NmaQZJLvt2RTwOe5fyz0WbBoLnQCwEialUhJZdvB2kk="; + hash = "sha256-9+MBB17a9QUA8LNBVDxBGU2N865cr0cC8glfPKc92No="; }; postPatch = '' No auto update branch exists Old version 6.0.4" not present in staging derivation file with contents: { lib , fetchPypi , buildPythonPackage , pytestCheckHook , pythonOlder , setuptools }: buildPythonPackage rec { pname = "multidict"; version = "6.0.5"; disabled = pythonOlder "3.7"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-9+MBB17a9QUA8LNBVDxBGU2N865cr0cC8glfPKc92No="; }; postPatch = '' substituteInPlace pytest.ini \ --replace-fail "-p pytest_cov" "" sed -i '/--cov/d' pytest.ini # `python3 -I -c "import multidict"` fails with ModuleNotFoundError substituteInPlace tests/test_circular_imports.py \ --replace-fail '"-I",' "" ''; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; preCheck = '' # import from $out rm -r multidict ''; pythonImportsCheck = [ "multidict" ]; meta = with lib; { changelog = "https://github.com/aio-libs/multidict/blob/v${version}/CHANGES.rst"; description = "Multidict implementation"; homepage = "https://github.com/aio-libs/multidict/"; license = licenses.asl20; maintainers = with maintainers; [ dotlambda ]; }; }