python310Packages.iniconfig 0 -> 1 attrpath: python310Packages.iniconfig 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/mkj3ndapr2s1rr0xql2dck9srx0h907j-packages.json.drv building '/nix/store/mkj3ndapr2s1rr0xql2dck9srx0h907j-packages.json.drv'... Going to be running update for following packages: - python3.10-iniconfig-1.1.1 Press Enter key to continue... Running update for: - python3.10-iniconfig-1.1.1: UPDATING ... - python3.10-iniconfig-1.1.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/iniconfig/default.nix b/pkgs/development/python-modules/iniconfig/default.nix index a8a4a611fee..1e9b3860069 100644 --- a/pkgs/development/python-modules/iniconfig/default.nix +++ b/pkgs/development/python-modules/iniconfig/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "iniconfig"; - version = "1.1.1"; + version = "2.0.0"; src = fetchPypi { inherit pname version; - sha256 = "bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"; + sha256 = "sha256-LZHhNb9y0xpBCxfBbaYQqCy1X2sEd9GpAhNLJKRVuLM="; }; nativeBuildInputs = [ setuptools-scm ]; No auto update branch exists Old version 1.1.1" not present in staging derivation file with contents: { lib , buildPythonPackage , substituteAll , fetchPypi , hatch-vcs , hatchling }: buildPythonPackage rec { pname = "iniconfig"; version = "2.0.0"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-LZHhNb9y0xpBCxfBbaYQqCy1X2sEd9GpAhNLJKRVuLM="; }; nativeBuildInputs = [ hatchling ]; patches = [ # Cannot use hatch-vcs, due to an inifinite recursion (substituteAll { src = ./version.patch; inherit version; }) ]; pythonImportsCheck = [ "iniconfig" ]; doCheck = false; # avoid circular import with pytest meta = with lib; { description = "brain-dead simple parsing of ini files"; homepage = "https://github.com/pytest-dev/iniconfig"; license = licenses.mit; maintainers = with maintainers; [ jonringer ]; }; }