poetry2nix/tests/matplotlib-pre-3-7/default.nix
2023-02-27 14:06:13 +13:00

10 lines
198 B
Nix

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