poetry2nix/tests/python-markers/default.nix

11 lines
238 B
Nix
Raw Normal View History

2023-10-28 06:22:40 -04:00
{ 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
''