2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2020-10-07 04:50:03 +01:00
|
|
|
, stdenv
|
2017-06-06 10:34:41 +01:00
|
|
|
, fetchPypi
|
2016-11-14 11:08:57 +00:00
|
|
|
, buildPythonPackage
|
2022-02-07 18:58:24 +00:00
|
|
|
, appdirs
|
2016-11-14 11:08:57 +00:00
|
|
|
, cffi
|
|
|
|
, decorator
|
2022-02-07 18:58:24 +00:00
|
|
|
, Mako
|
|
|
|
, mesa_drivers
|
|
|
|
, numpy
|
2017-01-19 23:48:24 +00:00
|
|
|
, ocl-icd
|
2022-02-07 18:58:24 +00:00
|
|
|
, opencl-headers
|
|
|
|
, platformdirs
|
2019-03-07 21:29:14 +00:00
|
|
|
, pybind11
|
2022-02-07 18:58:24 +00:00
|
|
|
, pytest
|
|
|
|
, pytools
|
|
|
|
, six
|
2016-11-14 11:08:57 +00:00
|
|
|
}:
|
|
|
|
|
2020-10-07 04:50:03 +01:00
|
|
|
let
|
|
|
|
os-specific-buildInputs =
|
|
|
|
if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ];
|
|
|
|
in buildPythonPackage rec {
|
2016-11-14 11:08:57 +00:00
|
|
|
pname = "pyopencl";
|
2022-02-11 02:21:23 +00:00
|
|
|
version = "2022.1";
|
2016-11-14 11:08:57 +00:00
|
|
|
|
2017-12-31 10:31:47 +00:00
|
|
|
checkInputs = [ pytest ];
|
2020-10-07 04:50:03 +01:00
|
|
|
buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs;
|
2016-11-14 11:08:57 +00:00
|
|
|
|
2022-02-07 18:58:24 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
appdirs
|
|
|
|
cffi
|
|
|
|
decorator
|
|
|
|
Mako
|
|
|
|
numpy
|
|
|
|
platformdirs
|
|
|
|
pytools
|
|
|
|
six
|
|
|
|
];
|
2016-11-14 11:08:57 +00:00
|
|
|
|
2017-06-06 10:34:41 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-11 02:21:23 +00:00
|
|
|
sha256 = "sha256-JMbZoKH/dgnz1zZevYd4YWpUM8QmVmwsjjX/qwDvIsQ=";
|
2016-11-14 11:08:57 +00:00
|
|
|
};
|
|
|
|
|
2017-12-31 10:31:47 +00:00
|
|
|
# py.test is not needed during runtime, so remove it from `install_requires`
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace setup.py --replace "pytest>=2" ""
|
|
|
|
'';
|
|
|
|
|
2019-03-07 21:29:14 +00:00
|
|
|
preBuild = ''
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
'';
|
|
|
|
|
2016-11-14 11:08:57 +00:00
|
|
|
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-11-14 11:08:57 +00:00
|
|
|
description = "Python wrapper for OpenCL";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/pyopencl/pyopencl";
|
2017-12-05 11:57:11 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.fridh ];
|
2016-11-14 11:08:57 +00:00
|
|
|
};
|
2017-01-19 23:48:24 +00:00
|
|
|
}
|