python311Packages.python-gnupg 0 -> 1 attrpath: python311Packages.python-gnupg 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/ppi9rq7mz1kwa6picm4q5n44h7xm3ykh-packages.json.drv building '/nix/store/ppi9rq7mz1kwa6picm4q5n44h7xm3ykh-packages.json.drv'... Going to be running update for following packages: - python3.11-python-gnupg-0.5.1 Press Enter key to continue... Running update for: - python3.11-python-gnupg-0.5.1: UPDATING ... - python3.11-python-gnupg-0.5.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/python-gnupg/default.nix b/pkgs/development/python-modules/python-gnupg/default.nix index 03290d2e99c5..95ebc2b954e8 100644 --- a/pkgs/development/python-modules/python-gnupg/default.nix +++ b/pkgs/development/python-modules/python-gnupg/default.nix @@ -8,13 +8,13 @@ buildPythonPackage rec { pname = "python-gnupg"; - version = "0.5.1"; + version = "0.5.2"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-VnS61Ok4dsCw0xl+MU1/lC05AYvzHiuDP2eIpoE8P7g="; + hash = "sha256-AdgBOTHJ+j9Fgku+pwVMA9bhHyWKcufghuFo28uRhUw="; }; postPatch = '' No auto update branch exists Old version 0.5.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools , gnupg , pytestCheckHook }: buildPythonPackage rec { pname = "python-gnupg"; version = "0.5.2"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-AdgBOTHJ+j9Fgku+pwVMA9bhHyWKcufghuFo28uRhUw="; }; postPatch = '' substituteInPlace gnupg.py \ --replace "gpgbinary='gpg'" "gpgbinary='${gnupg}/bin/gpg'" substituteInPlace test_gnupg.py \ --replace "os.environ.get('GPGBINARY', 'gpg')" "os.environ.get('GPGBINARY', '${gnupg}/bin/gpg')" ''; nativeBuildInputs = [ setuptools ]; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # network access "test_search_keys" ]; pythonImportsCheck = [ "gnupg" ]; meta = with lib; { description = "API for the GNU Privacy Guard (GnuPG)"; homepage = "https://github.com/vsajip/python-gnupg"; changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; license = licenses.bsd3; maintainers = with maintainers; [ copumpkin ]; }; }