python310Packages.gtts 0 -> 1 attrpath: python310Packages.gtts 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/9ykc6j3ics3qrx0hcp4pva3gd2x451xq-packages.json.drv building '/nix/store/9ykc6j3ics3qrx0hcp4pva3gd2x451xq-packages.json.drv'... Going to be running update for following packages: - python3.10-gtts-2.2.4 Press Enter key to continue... Running update for: - python3.10-gtts-2.2.4: UPDATING ... - python3.10-gtts-2.2.4: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/gtts/default.nix b/pkgs/development/python-modules/gtts/default.nix index 3e3fabddf31..5d9b5d74616 100644 --- a/pkgs/development/python-modules/gtts/default.nix +++ b/pkgs/development/python-modules/gtts/default.nix @@ -15,13 +15,13 @@ buildPythonPackage rec { pname = "gtts"; - version = "2.2.4"; + version = "2.3.0"; src = fetchFromGitHub { owner = "pndurette"; repo = "gTTS"; - rev = "v${version}"; - sha256 = "sha256-hQnFHi85Rifco0afLF8kKNOy9oPxKoupfmdm+fht6Cg="; + rev = "refs/tags/v${version}"; + sha256 = "sha256-dFNphsgf+0t3EPXO938TVncYcxL4EMOlznrfPR8SYhM="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.2.4" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , beautifulsoup4 , click , gtts-token , mock , pytest , requests , six , testfixtures , twine , urllib3 }: buildPythonPackage rec { pname = "gtts"; version = "2.3.0"; format = "pyproject"; src = fetchFromGitHub { owner = "pndurette"; repo = "gTTS"; rev = "refs/tags/v${version}"; sha256 = "sha256-dFNphsgf+0t3EPXO938TVncYcxL4EMOlznrfPR8SYhM="; }; propagatedBuildInputs = [ beautifulsoup4 click gtts-token requests six urllib3 twine ]; checkInputs = [ pytest mock testfixtures ]; # majority of tests just try to call out to Google's Translate API endpoint doCheck = false; checkPhase = '' pytest ''; pythonImportsCheck = [ "gtts" ]; meta = with lib; { description = "A Python library and CLI tool to interface with Google Translate text-to-speech API"; homepage = "https://gtts.readthedocs.io"; changelog = "https://gtts.readthedocs.io/en/latest/changelog.html"; license = licenses.mit; maintainers = with maintainers; [ unode ]; }; }