poetry2nix/tests/gdal/default.nix
2022-12-13 15:41:58 +13:00

8 lines
179 B
Nix

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