poetry2nix/tests/procrastinate/default.nix

13 lines
184 B
Nix
Raw Normal View History

{ poetry2nix
, runCommand
,
}:
let
env = poetry2nix.mkPoetryEnv {
projectDir = ./.;
};
in
runCommand "procrastinate-test" { } ''
${env}/bin/procrastinate --version > $out
''