poetry2nix/tests/common-pkgs-1/default.nix

9 lines
179 B
Nix
Raw Normal View History

2022-09-02 13:32:04 +12:00
{ lib, poetry2nix, python39 }:
poetry2nix.mkPoetryApplication {
2022-09-02 13:32:04 +12:00
python = python39;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}