poetry2nix/tests/manylinux/default.nix
2021-12-26 02:15:03 -08:00

15 lines
358 B
Nix

{ runCommand, lib, poetry2nix, python38 }:
let
pkg = poetry2nix.mkPoetryApplication {
python = python38;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
};
p = pkg.python.withPackages (ps: [ ps.numpy ps.opencv-python ]);
in
runCommand "test"
{ } ''
${p}/bin/python -c "import cv2"
touch $out
''