poetry2nix/tests/pendulum/default.nix
2023-10-26 12:28:09 +13:00

7 lines
178 B
Nix

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