python3Packages.fasthtml: 0.12.48 -> 0.13.3

.starlette upgrade in 83ece5c3a1 broke compatibility:
https://hydra.nixos.org/build/331250021/nixlog/6/tail

Upstream fixes that v0.13.0 and updating past 0.13.3 would need resolving
 - fastcore>=1.12.41 not satisfied by version 1.12.39
(which isn't great approach for stable 26.05 which motivates this commit)
https://github.com/AnswerDotAI/fasthtml/releases

(cherry picked from commit 6a56b38c13)
(from PR https://github.com/NixOS/nixpkgs/pull/533848 )
This commit is contained in:
Vladimír Čunát 2026-06-21 09:48:15 +02:00
commit 18a1ef95cd
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -31,14 +31,14 @@
buildPythonPackage (finalAttrs: {
pname = "fasthtml";
version = "0.12.48";
version = "0.13.3";
pyproject = true;
src = fetchFromGitHub {
owner = "AnswerDotAI";
repo = "fasthtml";
tag = finalAttrs.version;
hash = "sha256-lMAuIw4sMkS3XSG/0Bs0iQPSjMusbmjUKv0w4cINwas=";
hash = "sha256-PS5HGegC6pG/bJAGrKDsRYguBnNS9EDrZIjWvjErO4M=";
};
build-system = [