poetry2nix/tests/duckdb-wheel/default.nix

13 lines
309 B
Nix
Raw Normal View History

2023-10-26 12:18:24 +13:00
{ poetry2nix, python3, runCommand }:
2022-12-17 09:55:11 -05:00
let
env = poetry2nix.mkPoetryEnv {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
preferWheels = true;
};
in
runCommand "duckdb-wheel-test" { } ''
${env}/bin/python -c 'import duckdb; print(duckdb.__version__)' > $out
''