poetry2nix/tests/file-wheel-deps-level2/default.nix

10 lines
190 B
Nix
Raw Normal View History

2021-07-10 13:40:33 +02:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
pwd = ./.;
}