poetry2nix/tests/git-deps-1_2_0/default.nix

9 lines
177 B
Nix
Raw Permalink Normal View History

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