poetry2nix/tests/file-wheel-deps/default.nix
Niels Kristian Lyshøj Jensen aa111b9ac2
Add tests for local file packages
2021-07-10 13:40:33 +02:00

9 lines
190 B
Nix

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