poetry2nix/tests/common-pkgs-1/default.nix
2022-09-22 16:13:15 +12:00

8 lines
179 B
Nix

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