poetry2nix/tests/manylinux/default.nix
2020-05-19 21:06:02 +01:00

15 lines
356 B
Nix

{ runCommand, lib, poetry2nix, python3 }:
let
pkg = poetry2nix.mkPoetryApplication {
python = python3;
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
''