poetry2nix/tests/pyqt6/default.nix
2023-10-26 19:41:25 +09:00

9 lines
204 B
Nix

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