python3Packages.starlette: 1.1.0 -> 1.3.1 (#536200)

This commit is contained in:
dotlambda
2026-07-09 17:25:02 +00:00
committed by GitHub

View File

@@ -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;