python311Packages.pkginfo 0 -> 1 attrpath: python311Packages.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 [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/g1ahcrsxg7kdbgcl2wa7m257ccnpj42l-packages.json.drv building '/nix/store/g1ahcrsxg7kdbgcl2wa7m257ccnpj42l-packages.json.drv'... Going to be running update for following packages: - python3.11-pkginfo-1.9.6 Press Enter key to continue... Running update for: - python3.11-pkginfo-1.9.6: UPDATING ... - python3.11-pkginfo-1.9.6: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pkginfo/default.nix b/pkgs/development/python-modules/pkginfo/default.nix index dfce6e21bf1a..3a79cdbbf012 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.9.6"; + version = "1.10.0"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-j9WJbocYpDcvDqnMnZb2QXybmG4jpNEW3aJrYswp0EY="; + hash = "sha256-Xfc4NTmNENt5+O7NXNhrH20pMXWJ6nB5aZTUk5mvYpc="; }; nativeCheckInputs = [ No auto update branch exists Old version 1.9.6" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pytestCheckHook }: buildPythonPackage rec { pname = "pkginfo"; version = "1.10.0"; format = "setuptools"; src = fetchPypi { inherit pname version; hash = "sha256-Xfc4NTmNENt5+O7NXNhrH20pMXWJ6nB5aZTUk5mvYpc="; }; nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "pkginfo" ]; meta = with lib; { description = "Query metadatdata from sdists, bdists or installed packages"; mainProgram = "pkginfo"; 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; [ ]; }; }