2023-10-26 12:18:24 +13:00
|
|
|
{ lib, poetry2nix, python38 }:
|
2021-06-26 10:00:05 +02:00
|
|
|
poetry2nix.mkPoetryApplication {
|
|
|
|
pyproject = ./pyproject.toml;
|
|
|
|
poetrylock = ./poetry.lock;
|
|
|
|
src = lib.cleanSource ./.;
|
2023-03-23 12:04:35 +13:00
|
|
|
python = python38;
|
2021-06-26 10:00:05 +02:00
|
|
|
}
|