poetry2nix/tests/operators/default.nix
2020-01-09 12:18:38 +00:00

8 lines
177 B
Nix

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