mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-08 18:51:37 -05:00
11 lines
238 B
Nix
11 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
|
||
|
''
|