poetry2nix/tests/git-deps/default.nix
2019-12-27 19:17:35 +00:00

8 lines
177 B
Nix

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