mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-04 16:51:40 -05:00

Ideally we'd use `nix-gitignore` but that one fails when there is no `.gitignore` file so it's not a sensible default.
6 lines
106 B
Nix
6 lines
106 B
Nix
{ lib, poetry2nix, python3 }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
python = python3;
|
|
projectDir = ./.;
|
|
}
|