poetry2nix/tests/path-deps/default.nix
2019-12-29 13:20:35 +00:00

9 lines
190 B
Nix

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