poetry2nix/tests/pandas/default.nix
2023-06-21 11:56:52 +12:00

10 lines
182 B
Nix

{ poetry2nix, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "pandas-test" { } ''
${env}/bin/python -c 'import pandas'
touch $out
''