cereal/derivation.nix
Campbell Alden 12797e3cae Add users
2026-08-01 01:10:32 +09:00

10 lines
261 B
Nix

{ lib, python313Packages }:
with python313Packages;
buildPythonApplication {
pname = "cereal";
version = "0.0.1";
propagatedBuildInputs = [ flask requests waitress sqlalchemy argon2-cffi];
src = ./.;
pyproject = true;
build-system = [setuptools];
}