poetry2nix/tests/tzlocal/default.nix
2023-04-19 06:46:11 -04:00

8 lines
181 B
Nix

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