mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00

The setup.py file is gone in newer versions.
See also
- https://github.com/nix-community/poetry2nix/issues/1476
- 04f3147a8e
8 lines
177 B
Nix
8 lines
177 B
Nix
{ lib, poetry2nix, python3 }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
python = python3;
|
|
pyproject = ./pyproject.toml;
|
|
poetrylock = ./poetry.lock;
|
|
src = lib.cleanSource ./.;
|
|
}
|