Initialize repo

This commit is contained in:
Campbell Alden 2026-07-30 00:12:33 +09:00
commit 09381d17d0
9 changed files with 108 additions and 0 deletions

10
derivation.nix Normal file
View file

@ -0,0 +1,10 @@
{ lib, python313Packages }:
with python313Packages;
buildPythonApplication {
pname = "cereal";
version = "0.0.1";
propagatedBuildInputs = [ flask requests waitress];
src = ./.;
pyproject = true;
build-system = [setuptools];
}