feat: initial project setup with implementation plan
- 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>
This commit is contained in:
34
packages/apswutils.nix
Normal file
34
packages/apswutils.nix
Normal file
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
setuptools,
|
||||
fastcore,
|
||||
apsw,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "apswutils";
|
||||
version = "0.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256:0n5yvm132rdzr7ixp0i07n8hk0zpwijjbnffrmr0z2khkljnnmsc";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
fastcore
|
||||
apsw
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Utilities for working with APSW";
|
||||
homepage = "https://github.com/AnswerDotAI/apswutils";
|
||||
license = lib.licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user