- Add PLAN.md with 40-step checklist across 10 phases - Add CLAUDE.md with project-specific instructions - Set up nix flake with FastHTML/MonsterUI dependencies - Create Python package skeleton (src/animaltrack) - Vendor FastHTML and MonsterUI documentation - Add Docker build configuration 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
552 B
Nix
32 lines
552 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
anyio,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sse-starlette";
|
|
version = "3.0.3";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "sse_starlette";
|
|
inherit version;
|
|
hash = "sha256:0wdr348bi3hd9ivbvcvsahxs441rn1vai30ck7m00qp18y3v1kw8";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ anyio ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "SSE plugin for Starlette";
|
|
homepage = "https://github.com/sysid/sse-starlette";
|
|
license = lib.licenses.bsd3;
|
|
};
|
|
}
|