poetry2nix/tests/scipy1_11/default.nix
Andrew Marshall eec895af5d overrides/scipy: Fix on >=1.11.1
The setup.py file is gone in newer versions.

See also
- https://github.com/nix-community/poetry2nix/issues/1476
- 04f3147a8e
2024-01-04 17:07:50 -05:00

8 lines
177 B
Nix

{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}