mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-12 13:36:38 -04:00
10 lines
165 B
Nix
10 lines
165 B
Nix
![]() |
{ poetry2nix, runCommand }:
|
||
|
let
|
||
|
env = poetry2nix.mkPoetryEnv {
|
||
|
projectDir = ./.;
|
||
|
};
|
||
|
in
|
||
|
runCommand "mutmut-test" { } ''
|
||
|
${env}/bin/mutmut version > $out
|
||
|
''
|