poetry2nix/tests/git-deps/default.nix

9 lines
177 B
Nix
Raw Permalink Normal View History

2019-12-11 13:20:15 +01:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}