poetry2nix/tests/pendulum/default.nix

8 lines
178 B
Nix
Raw Normal View History

{ lib, poetry2nix, python39 }:
2021-06-26 10:00:05 +02:00
poetry2nix.mkPoetryApplication {
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
python = python39;
2021-06-26 10:00:05 +02:00
}