poetry2nix/tests/test-extras/default.nix

16 lines
283 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 = [ "more" ];
checkPhase = ''
runHook preCheck
pytest
runHook postCheck
'';
}