poetry2nix/tests/test-no-extras/default.nix
2022-12-20 10:20:58 -05:00

15 lines
276 B
Nix

{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
extras = [ ];
checkPhase = ''
runHook preCheck
pytest
runHook postCheck
'';
}