poetry2nix/tests/mutmut/default.nix

11 lines
200 B
Nix
Raw Normal View History

2023-10-24 08:46:40 -04:00
{ poetry2nix, python310, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
2023-10-24 08:46:40 -04:00
python = python310;
};
in
runCommand "mutmut-test" { } ''
${env}/bin/mutmut version > $out
''