2024-03-09 12:10:18 -05:00
|
|
|
{ lib, poetry2nix, python39 }:
|
2021-06-26 10:00:05 +02:00
|
|
|
poetry2nix.mkPoetryApplication {
|
|
|
|
pyproject = ./pyproject.toml;
|
|
|
|
poetrylock = ./poetry.lock;
|
|
|
|
src = lib.cleanSource ./.;
|
2024-03-09 12:10:18 -05:00
|
|
|
python = python39;
|
2021-06-26 10:00:05 +02:00
|
|
|
}
|