poetry2nix/tests/ansible-molecule/default.nix
2020-08-24 23:11:21 +02:00

8 lines
177 B
Nix

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