poetry2nix/tests/text-generation-webui/default.nix
2023-05-02 21:48:58 -07:00

9 lines
204 B
Nix

{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
preferWheels = true;
}