poetry2nix/tests/wandb/default.nix

9 lines
177 B
Nix
Raw Normal View History

2020-04-16 04:59:26 +00:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}