nixpkgs/pkgs/development/python-modules/pyopencl/default.nix
Robert Schütz 098cb9f63a
Merge pull request #56082 from Ma27/fix-pyopencl
python3Packages.pyopencl: fix build
2019-03-14 00:11:22 +01:00

50 lines
1,023 B
Nix

{ stdenv
, fetchPypi
, buildPythonPackage
, Mako
, pytest
, numpy
, cffi
, pytools
, decorator
, appdirs
, six
, opencl-headers
, ocl-icd
, pybind11
}:
buildPythonPackage rec {
pname = "pyopencl";
version = "2018.2.3";
checkInputs = [ pytest ];
buildInputs = [ opencl-headers ocl-icd pybind11 ];
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
src = fetchPypi {
inherit pname version;
sha256 = "ebefe9505cad970dfb4c8024630ef5a546c68d22943dbb3e5677943a6d006ac6";
};
# 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 stdenv.lib; {
description = "Python wrapper for OpenCL";
homepage = https://github.com/pyopencl/pyopencl;
license = licenses.mit;
maintainers = [ maintainers.fridh ];
};
}