poetry2nix/tests/uwsgi/default.nix
2021-10-04 16:22:11 -05:00

6 lines
159 B
Nix

{ lib, poetry2nix, runCommand }:
poetry2nix.mkPoetryApplication {
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}