mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00

test command: ``` nix-build --attr gnureadline --keep-going --show-trace tests/default.nix ``` before: ``` ld: library not found for -lncurses clang-11: error: linker command failed with exit code 1 (use -v to see invocation) error: command '/nix/store/sa6hywsm1mqfyd1xakyzv4ljjsb3h awh-clang-wrapper-11.1.0/bin/clang' failed with exit code 1 error: subprocess-exited-with-error ``` after: - Success!
6 lines
101 B
Nix
6 lines
101 B
Nix
{ poetry2nix, python3 }:
|
|
|
|
poetry2nix.mkPoetryApplication {
|
|
python = python3;
|
|
projectDir = ./.;
|
|
}
|