python310Packages.flask 0 -> 1 attrpath: python310Packages.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/d1v3f9vbq84hqjr9p9z242jwzlqjyrzd-packages.json.drv building '/nix/store/d1v3f9vbq84hqjr9p9z242jwzlqjyrzd-packages.json.drv'... Going to be running update for following packages: - python3.10-flask-2.2.5 Press Enter key to continue... Running update for: - python3.10-flask-2.2.5: UPDATING ... - python3.10-flask-2.2.5: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/flask/default.nix b/pkgs/development/python-modules/flask/default.nix index b7914ad3777e..0ea32b4f21cc 100644 --- a/pkgs/development/python-modules/flask/default.nix +++ b/pkgs/development/python-modules/flask/default.nix @@ -19,12 +19,12 @@ buildPythonPackage rec { pname = "flask"; - version = "2.2.5"; + version = "2.3.3"; src = fetchPypi { pname = "Flask"; inherit version; - hash = "sha256-7e6bCn/yZiG9WowQ/0hK4oc3okENmbC7mmhQx/uXeqA="; + hash = "sha256-CcNHqSqn/0qOfzIGeV8w2CZlS684uHPQdEzVccpgnvw="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.2.5" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , asgiref , blinker , click , flit-core , importlib-metadata , itsdangerous , jinja2 , python-dotenv , werkzeug , pytestCheckHook , pythonOlder # used in passthru.tests , flask-limiter , flask-restful , flask-restx , moto }: buildPythonPackage rec { pname = "flask"; version = "2.3.3"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-CcNHqSqn/0qOfzIGeV8w2CZlS684uHPQdEzVccpgnvw="; }; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ click blinker itsdangerous jinja2 werkzeug ] ++ lib.optional (pythonOlder "3.10") importlib-metadata; nativeCheckInputs = [ pytestCheckHook ]; passthru.tests = { inherit flask-limiter flask-restful flask-restx moto; }; passthru.optional-dependencies = { dotenv = [ python-dotenv ]; async = [ asgiref ]; }; meta = with lib; { 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 ]; }; }