python310Packages.pkginfo 0 -> 1 attrpath: python310Packages.pkginfo 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/0sqg9p20a24vra4jr6j27jxqfqq0mxak-packages.json.drv building '/nix/store/0sqg9p20a24vra4jr6j27jxqfqq0mxak-packages.json.drv'... Going to be running update for following packages: - python3.10-pkginfo-1.8.3 Press Enter key to continue... Running update for: - python3.10-pkginfo-1.8.3: UPDATING ... - python3.10-pkginfo-1.8.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pkginfo/default.nix b/pkgs/development/python-modules/pkginfo/default.nix index b3f4f1d450b..b33191e2a3d 100644 --- a/pkgs/development/python-modules/pkginfo/default.nix +++ b/pkgs/development/python-modules/pkginfo/default.nix @@ -6,12 +6,12 @@ buildPythonPackage rec { pname = "pkginfo"; - version = "1.8.3"; + version = "1.9.6"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "sha256-qE2kMY3Yb4cKlEeoyYNAqgYha/xvK3vcS4dmmErhhnw="; + sha256 = "sha256-j9WJbocYpDcvDqnMnZb2QXybmG4jpNEW3aJrYswp0EY="; }; checkInputs = [ No auto update branch exists Old version 1.8.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pytestCheckHook }: buildPythonPackage rec { pname = "pkginfo"; version = "1.9.2"; format = "setuptools"; src = fetchPypi { inherit pname version; sha256 = "sha256-rAPjfk1gGq7kD4CH9j/EoqbJgU3aLI+mqrGxgpZTvfo="; }; checkInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pkginfo" ]; meta = with lib; { description = "Query metadatdata from sdists, bdists or installed packages"; homepage = "https://pythonhosted.org/pkginfo/"; longDescription = '' This package provides an API for querying the distutils metadata written in the PKG-INFO file inside a source distriubtion (an sdist) or a binary distribution (e.g., created by running bdist_egg). It can also query the EGG-INFO directory of an installed distribution, and the *.egg-info stored in a “development checkout” (e.g, created by running setup.py develop). ''; license = licenses.mit; maintainers = with maintainers; [ ]; }; }