nixpkgs/pkgs/development/python-modules/pyopencl/default.nix

45 lines
951 B
Nix
Raw Normal View History

{ stdenv
, fetchPypi
, buildPythonPackage
, Mako
, pytest
, numpy
, cffi
, pytools
, decorator
, appdirs
, six
, opencl-headers
2017-01-20 00:48:24 +01:00
, ocl-icd
}:
buildPythonPackage rec {
pname = "pyopencl";
2019-01-17 16:13:06 +01:00
version = "2018.2.2";
2017-12-31 11:31:47 +01:00
checkInputs = [ pytest ];
buildInputs = [ opencl-headers ocl-icd ];
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
src = fetchPypi {
inherit pname version;
2019-01-17 16:13:06 +01:00
sha256 = "419375fb794d97f9bd46f0dc24ce83b5cc83d316771ba82fac80de8bf883dcdc";
};
2017-12-31 11:31:47 +01:00
# py.test is not needed during runtime, so remove it from `install_requires`
postPatch = ''
substituteInPlace setup.py --replace "pytest>=2" ""
'';
# 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 ];
};
2017-01-20 00:48:24 +01:00
}