From 5bffa343a125df8afa6f8ae98f98ab6d99937bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 27 Jun 2026 21:34:46 -0700 Subject: [PATCH] python3Packages.starlette: 1.1.0 -> 1.3.1 Diff: https://github.com/Kludex/starlette/compare/1.1.0...1.3.1 Changelog: https://github.com/Kludex/starlette/blob/1.3.1/docs/release-notes.md --- pkgs/development/python-modules/starlette/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix index 98974519d575..b2024f5c8496 100644 --- a/pkgs/development/python-modules/starlette/default.nix +++ b/pkgs/development/python-modules/starlette/default.nix @@ -8,7 +8,6 @@ # dependencies anyio, - typing-extensions, # optional dependencies itsdangerous, @@ -16,6 +15,7 @@ python-multipart, pyyaml, httpx, + httpx2, # tests pytestCheckHook, @@ -27,14 +27,14 @@ buildPythonPackage rec { pname = "starlette"; - version = "1.1.0"; + version = "1.3.1"; pyproject = true; src = fetchFromGitHub { owner = "Kludex"; repo = "starlette"; tag = version; - hash = "sha256-9iQXlpA1VDGw1c7X1zJPmJ3Dub46PwqrVIX1+fWOZ7M="; + hash = "sha256-0eby4cDIU2bPUv+1qSTnZtfo4kkgMDIDYnZ9wp2wtoI="; }; build-system = [ hatchling ]; @@ -47,12 +47,12 @@ buildPythonPackage rec { python-multipart pyyaml httpx + httpx2 ]; nativeCheckInputs = [ pytestCheckHook trio - typing-extensions ] ++ lib.concatAttrValues optional-dependencies;