python311Packages.cogapp 0 -> 1 attrpath: python311Packages.cogapp 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/00y5nb6f1b2k9073v73x6bcimhznqf5h-packages.json.drv building '/nix/store/00y5nb6f1b2k9073v73x6bcimhznqf5h-packages.json.drv'... Going to be running update for following packages: - python3.11-cogapp-3.3.0 Press Enter key to continue... Running update for: - python3.11-cogapp-3.3.0: UPDATING ... - python3.11-cogapp-3.3.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/cogapp/default.nix b/pkgs/development/python-modules/cogapp/default.nix index 92d44c82ef3d..6a8448f242ae 100644 --- a/pkgs/development/python-modules/cogapp/default.nix +++ b/pkgs/development/python-modules/cogapp/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "cogapp"; - version = "3.3.0"; + version = "3.4.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "1be95183f70282422d594fa42426be6923070a4bd8335621f6347f3aeee81db0"; + sha256 = "sha256-qAbV254xihotP86YgAgXkWjn2xPl5VsZt5dj+budKYI="; }; # there are no tests No auto update branch exists Old version 3.3.0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , setuptools }: buildPythonPackage rec { pname = "cogapp"; version = "3.4.1"; pyproject = true; src = fetchPypi { inherit pname version; sha256 = "sha256-qAbV254xihotP86YgAgXkWjn2xPl5VsZt5dj+budKYI="; }; nativeBuildInputs = [ setuptools ]; # there are no tests doCheck = false; meta = with lib; { description = "A code generator for executing Python snippets in source files"; homepage = "https://nedbatchelder.com/code/cog"; license = licenses.mit; maintainers = with maintainers; [ lovek323 ]; }; }