python312Packages.flask 2.3.3 -> 3.0.2 https://repology.org/project/python:flask/versions attrpath: python312Packages.flask 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/4cs55qbycyrlf6ijs1x894ssmczn006v-packages.json.drv building '/nix/store/4cs55qbycyrlf6ijs1x894ssmczn006v-packages.json.drv'... Going to be running update for following packages: - python3.12-flask-2.3.3 Press Enter key to continue... Running update for: - python3.12-flask-2.3.3: UPDATING ... - python3.12-flask-2.3.3: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/flask/default.nix b/pkgs/development/python-modules/flask/default.nix index 154625f6c52a..0322d006b60e 100644 --- a/pkgs/development/python-modules/flask/default.nix +++ b/pkgs/development/python-modules/flask/default.nix @@ -21,12 +21,12 @@ buildPythonPackage rec { pname = "flask"; - version = "2.3.3"; + version = "3.0.2"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-CcNHqSqn/0qOfzIGeV8w2CZlS684uHPQdEzVccpgnvw="; + hash = "sha256-giwD9LeZIEJQp+6Ese3cQGZTlTM5c9+53uv+Ql/vy30="; }; nativeBuildInputs = [ No auto update branch exists Old version 2.3.3" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonOlder # build-system , flit-core # dependencies , blinker , click , importlib-metadata , itsdangerous , jinja2 , werkzeug # optional-dependencies , asgiref , python-dotenv # tests , greenlet , pytestCheckHook # reverse dependencies , flask-limiter , flask-restful , flask-restx , moto }: buildPythonPackage rec { pname = "flask"; version = "3.0.1"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-ZIn1G7Nmbe9vMU4V8Z1QoYaaGa4OjJo2Qf/mbHfUJAM="; }; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ click blinker itsdangerous jinja2 werkzeug ] ++ lib.optionals (pythonOlder "3.10") [ importlib-metadata ]; passthru.optional-dependencies = { async = [ asgiref ]; dotenv = [ python-dotenv ]; }; nativeCheckInputs = [ pytestCheckHook ] ++ lib.optionals (pythonOlder "3.11") [ greenlet ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); passthru.tests = { inherit flask-limiter flask-restful flask-restx moto; }; meta = with lib; { changelog = "https://flask.palletsprojects.com/en/${versions.majorMinor version}.x/changes/#version-${replaceStrings [ "." ] [ "-" ] version}"; homepage = "https://flask.palletsprojects.com/"; description = "The Python micro framework for building web applications"; longDescription = '' Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks. ''; license = licenses.bsd3; maintainers = with maintainers; [ nickcao ]; }; }