poetry2nix/tests/scipy1_9/default.nix

9 lines
177 B
Nix
Raw Normal View History

2022-10-20 11:16:42 +00:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}