poetry2nix/tests/arrow/default.nix
Victor Engmark 1a0869c771 build: Arrow 1.3.0
Motivated by the fact that >800 other packages in PyPI depend on this
one <https://www.wheelodex.org/projects/arrow/>.
2023-10-26 16:06:09 +13:00

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
''