mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 12:06:40 -04:00
7 lines
178 B
Nix
7 lines
178 B
Nix
{ lib, poetry2nix, python38 }:
|
|
poetry2nix.mkPoetryApplication {
|
|
pyproject = ./pyproject.toml;
|
|
poetrylock = ./poetry.lock;
|
|
src = lib.cleanSource ./.;
|
|
python = python38;
|
|
}
|