poetry2nix/tests/mysqlclient/default.nix
2023-10-02 15:58:43 +00:00

10 lines
188 B
Nix

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