mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-09 12:06:40 -04:00
13 lines
390 B
Nix
13 lines
390 B
Nix
{ lib, poetry2nix, python3, runCommand }:
|
|
let
|
|
env = poetry2nix.mkPoetryEnv {
|
|
python = python3;
|
|
pyproject = ./pyproject.toml;
|
|
poetrylock = ./poetry.lock;
|
|
preferWheels = true;
|
|
};
|
|
isPyArrowWheel = env.python.pkgs.pyarrow.src.isWheel;
|
|
in
|
|
assert isPyArrowWheel; runCommand "pyarrow-test" { } ''
|
|
${env}/bin/python -c 'import pyarrow; print(pyarrow.__version__)' > $out
|
|
''
|