poetry2nix/tests/pyqt6/default.nix

10 lines
204 B
Nix
Raw Normal View History

2023-10-23 23:56:13 +09:00
{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
2023-10-26 18:41:56 +09:00
preferWheels = true;
2023-10-23 23:56:13 +09:00
}