poetry2nix/tests/matplotlib-post-3-7/default.nix

10 lines
199 B
Nix

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