poetry2nix/tests/pyside6/default.nix
2023-10-26 19:36:03 +09:00

8 lines
181 B
Nix

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