poetry2nix/tests/test-no-extras/default.nix

16 lines
276 B
Nix
Raw Normal View History

2022-12-11 12:15:55 -05:00
{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
extras = [ ];
checkPhase = ''
runHook preCheck
pytest
runHook postCheck
'';
}