poetry2nix/tests/shapely/default.nix

9 lines
179 B
Nix
Raw Permalink Normal View History

2022-05-13 07:31:18 -04:00
{ lib, poetry2nix, python38 }:
poetry2nix.mkPoetryApplication {
python = python38;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}