poetry2nix/tests/path-deps/default.nix

10 lines
190 B
Nix
Raw Normal View History

2019-12-11 13:24:58 +01:00
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
2019-12-11 13:24:58 +01:00
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
2019-12-11 13:24:58 +01:00
src = lib.cleanSource ./.;
pwd = ./.;
2019-12-11 13:24:58 +01:00
}