poetry2nix/tests/text-generation-webui/default.nix

10 lines
204 B
Nix
Raw Normal View History

2023-05-02 21:48:58 -07:00
{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
preferWheels = true;
}