python311Packages.werkzeug 2.2.3 -> 3.0.0 https://repology.org/project/python:werkzeug/versions attrpath: python311Packages.werkzeug 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/10rwgwirr2sq1zklrqbilynha7rfyxq6-packages.json.drv building '/nix/store/10rwgwirr2sq1zklrqbilynha7rfyxq6-packages.json.drv'... Going to be running update for following packages: - python3.11-werkzeug-2.2.3 Press Enter key to continue... Running update for: - python3.11-werkzeug-2.2.3: UPDATING ... - python3.11-werkzeug-2.2.3: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/werkzeug/default.nix b/pkgs/development/python-modules/werkzeug/default.nix index e5b6a93eae6d..e207f52f4131 100644 --- a/pkgs/development/python-modules/werkzeug/default.nix +++ b/pkgs/development/python-modules/werkzeug/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "werkzeug"; - version = "2.2.3"; + version = "3.0.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -23,7 +23,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "Werkzeug"; inherit version; - hash = "sha256-LhzMlBfU2jWLnebxdOOsCUOR6h1PvvLWZ4ZdgZ39Cv4="; + hash = "sha256-P//03MMttS7zzJTf8wAKPChGiQ86WlGACie5CcXncPA="; }; propagatedBuildInputs = [ No auto update branch exists Old version 2.2.3" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , pythonOlder , fetchPypi , flit-core , watchdog , ephemeral-port-reserve , pytest-timeout , pytest-xprocess , pytestCheckHook , markupsafe # for passthru.tests , moto, sentry-sdk }: buildPythonPackage rec { pname = "werkzeug"; version = "2.3.7"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-K4wORHtLnbzIXdl7butNy69si2w74L1lTiVVPgohV9g="; }; nativeBuildInputs = [ flit-core ]; propagatedBuildInputs = [ markupsafe ]; passthru.optional-dependencies = { watchdog = lib.optionals (!stdenv.isDarwin) [ # watchdog requires macos-sdk 10.13[ watchdog ]; }; nativeCheckInputs = [ ephemeral-port-reserve pytest-timeout pytest-xprocess pytestCheckHook ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); disabledTests = lib.optionals stdenv.isDarwin [ "test_get_machine_id" ]; disabledTestPaths = [ # ConnectionRefusedError: [Errno 111] Connection refused "tests/test_serving.py" ]; pytestFlagsArray = [ # don't run tests that are marked with filterwarnings, they fail with # warnings._OptionError: unknown warning category: 'pytest.PytestUnraisableExceptionWarning' "-m 'not filterwarnings'" ]; passthru.tests = { inherit moto sentry-sdk; }; meta = with lib; { homepage = "https://palletsprojects.com/p/werkzeug/"; description = "The comprehensive WSGI web application library"; longDescription = '' Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries. ''; license = licenses.bsd3; maintainers = with maintainers; [ ]; }; }