forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, appdirs
|
|
, cffi
|
|
, decorator
|
|
, Mako
|
|
, mesa_drivers
|
|
, numpy
|
|
, ocl-icd
|
|
, opencl-headers
|
|
, platformdirs
|
|
, pybind11
|
|
, pytest
|
|
, pytools
|
|
, six
|
|
}:
|
|
|
|
let
|
|
os-specific-buildInputs =
|
|
if stdenv.isDarwin then [ mesa_drivers.dev ] else [ ocl-icd ];
|
|
in buildPythonPackage rec {
|
|
pname = "pyopencl";
|
|
version = "2022.3.1";
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
buildInputs = [ opencl-headers pybind11 ] ++ os-specific-buildInputs;
|
|
|
|
propagatedBuildInputs = [
|
|
appdirs
|
|
cffi
|
|
decorator
|
|
Mako
|
|
numpy
|
|
platformdirs
|
|
pytools
|
|
six
|
|
];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-Sj2w/mG1zclSZ1Jt7r1xp+HXlWlNSw/idh8GMLzKNiE=";
|
|
};
|
|
|
|
# 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 ];
|
|
};
|
|
}
|