mirror of
https://github.com/vale981/poetry2nix
synced 2025-03-06 09:41:39 -05:00
10 lines
241 B
Nix
10 lines
241 B
Nix
{ lib, poetry2nix, python3, runCommand }:
|
|
let
|
|
env = poetry2nix.mkPoetryEnv {
|
|
python = python3;
|
|
projectDir = ./.;
|
|
};
|
|
in
|
|
runCommand "plyvel-test" { } ''
|
|
"${lib.getExe env}" -c 'import plyvel; print(plyvel.__version__)' > $out
|
|
''
|