python310Packages.flaskbabel 0 -> 1 attrpath: python310Packages.flaskbabel Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/478yilxbd28ri5q8py24hmac1hc5m6x9-packages.json.drv building '/nix/store/478yilxbd28ri5q8py24hmac1hc5m6x9-packages.json.drv'... Going to be running update for following packages: - python3.10-flask-babel-3.0.1 Press Enter key to continue... Running update for: - python3.10-flask-babel-3.0.1: UPDATING ... - python3.10-flask-babel-3.0.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/flask-babel/default.nix b/pkgs/development/python-modules/flask-babel/default.nix index c573521bc97..23d0be63386 100644 --- a/pkgs/development/python-modules/flask-babel/default.nix +++ b/pkgs/development/python-modules/flask-babel/default.nix @@ -23,14 +23,14 @@ buildPythonPackage rec { pname = "flask-babel"; - version = "3.0.1"; + version = "3.1.0"; format = "pyproject"; src = fetchFromGitHub { owner = "python-babel"; repo = "flask-babel"; rev = "refs/tags/v${version}"; - hash = "sha256-bHsB1f7dbZW4k8JteyZOwVCgWRDZMu21XdMcjM5NYjk="; + hash = "sha256-KoTHBrGD6M3rkXoxUadRXhroRUbWKaL/rE6Rd2mxw4c="; }; patches = [ No auto update branch exists Old version 3.0.1" not present in staging-next derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub , fetchpatch # build-system , poetry-core # docs , furo , sphinxHook # runtime , babel , flask , jinja2 , pytz # tests , pytest-mock , pytestCheckHook }: buildPythonPackage rec { pname = "flask-babel"; version = "3.1.0"; format = "pyproject"; src = fetchFromGitHub { owner = "python-babel"; repo = "flask-babel"; rev = "refs/tags/v${version}"; hash = "sha256-KoTHBrGD6M3rkXoxUadRXhroRUbWKaL/rE6Rd2mxw4c="; }; outputs = [ "out" "doc" ]; nativeBuildInputs = [ furo poetry-core sphinxHook ]; propagatedBuildInputs = [ babel flask jinja2 pytz ]; pythonImportsCheck = [ "flask_babel" ]; checkInputs = [ pytest-mock pytestCheckHook ]; meta = with lib; { changelog = "https://github.com/python-babel/flask-babel/releases/tag/v${version}"; description = "Adds i18n/l10n support to Flask applications"; longDescription = '' Implements i18n and l10n support for Flask. This is based on the Python babel module as well as pytz both of which are installed automatically for you if you install this library. ''; license = licenses.bsd2; maintainers = teams.sage.members ++ (with maintainers; [ matejc ]); homepage = "https://github.com/python-babel/flask-babel"; }; }