poetry2nix/tests/wandb/default.nix

9 lines
179 B
Nix
Raw Normal View History

2022-09-02 13:32:04 +12:00
{ lib, poetry2nix, python39 }:
2020-04-16 04:59:26 +00:00
poetry2nix.mkPoetryApplication {
2022-09-02 13:32:04 +12:00
python = python39;
2020-04-16 04:59:26 +00:00
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}