13 lines
361 B
Nix
13 lines
361 B
Nix
{ lib, python313Packages }:
|
|
with python313Packages;
|
|
buildPythonApplication {
|
|
pname = "cereal";
|
|
version = "0.0.1";
|
|
propagatedBuildInputs = [ flask requests waitress sqlalchemy argon2-cffi pyjwt cryptography jinja2];
|
|
src = ./.;
|
|
pyproject = true;
|
|
build-system = [setuptools];
|
|
postInstall = ''
|
|
install -Dm755 scripts/seed.py $out/bin/seed
|
|
'';
|
|
}
|