poetry2nix/tests/ansible-molecule/default.nix

9 lines
212 B
Nix

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