poetry2nix/tests/tzlocal/default.nix

9 lines
181 B
Nix
Raw Normal View History

2023-04-01 06:37:23 -04:00
{ lib, poetry2nix, python310 }:
poetry2nix.mkPoetryApplication {
python = python310;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}