poetry2nix/tests/python-markers/default.nix
2023-10-28 06:33:24 -04:00

10 lines
238 B
Nix

{ poetry2nix, python3, runCommand }:
let
env = poetry2nix.mkPoetryEnv {
python = python3;
projectDir = ./.;
};
in
runCommand "python-markers-test" { } ''
${env}/bin/python -c 'import plum; print(plum.__version__)' > $out
''