Merge pull request #49070 from r-ryantm/auto-update/python3.6-dlib

python36Packages.dlib: 19.13 -> 19.16
This commit is contained in:
Frederik Rietdijk
2018-10-29 19:27:07 +01:00
committed by GitHub
3 changed files with 17 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
{ buildPythonPackage, dlib, python, pytest }:
buildPythonPackage {
inherit (dlib) name src nativeBuildInputs buildInputs meta;
checkPhase = ''
${python.interpreter} nix_run_setup test --no USE_AVX_INSTRUCTIONS
'';
patches = [ ./build-cores.patch ];
checkInputs = [ pytest ];
}