- 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>
35 lines
576 B
Nix
35 lines
576 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
fastcore,
|
|
apswutils,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fastlite";
|
|
version = "0.2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256:1hi5i68rpffghp254gpv332baqfkdl41j9zzxrdig5yicbm0p3qb";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
fastcore
|
|
apswutils
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A bit of extra usability for sqlite";
|
|
homepage = "https://github.com/AnswerDotAI/fastlite";
|
|
license = lib.licenses.asl20;
|
|
};
|
|
}
|