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

Motivated by the fact that >800 other packages in PyPI depend on this one <https://www.wheelodex.org/projects/arrow/>.
9 lines
200 B
Nix
9 lines
200 B
Nix
{ poetry2nix, runCommand }:
|
|
let
|
|
env = poetry2nix.mkPoetryEnv {
|
|
projectDir = ./.;
|
|
};
|
|
in
|
|
runCommand "arrow-test" { } ''
|
|
${env}/bin/python -c 'import arrow; print(arrow.__version__)' > $out
|
|
''
|