poetry2nix/tests/pandas/default.nix

11 lines
182 B
Nix
Raw Normal View History

2023-06-09 16:10:40 +12:00
{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "pandas-test" { } ''
${env}/bin/python -c 'import pandas'
touch $out
''