55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, Mako
|
|
, pytest
|
|
, numpy
|
|
, cffi
|
|
, pytools
|
|
, decorator
|
|
, appdirs
|
|
, six
|
|
, opencl-headers
|
|
, ocl-icd
|
|
, pybind11
|
|
, mesa_drivers
|
|
}:
|
|
|
|
let
|
|
os-specific-buildInputs =
|
|
if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ];
|
|
in buildPythonPackage rec {
|
|
pname = "pyopencl";
|
|
version = "2021.1.4";
|
|
|
|
checkInputs = [ pytest ];
|
|
buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs;
|
|
|
|
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6a9665e89c15e1c684789263bd3a632567e7c7bd25a657092df4b185b3468971";
|
|
};
|
|
|
|
# py.test is not needed during runtime, so remove it from `install_requires`
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace "pytest>=2" ""
|
|
'';
|
|
|
|
preBuild = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for OpenCL";
|
|
homepage = "https://github.com/pyopencl/pyopencl";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.fridh ];
|
|
};
|
|
}
|