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

45 lines
949 B
Nix
Raw Normal View History

2016-11-14 12:08:57 +01:00
{ stdenv
2017-06-06 11:34:41 +02:00
, fetchPypi
2016-11-14 12:08:57 +01:00
, buildPythonPackage
, Mako
, pytest
, numpy
, cffi
, pytools
, decorator
, appdirs
, six
, opencl-headers
2017-01-20 02:48:24 +03:00
, ocl-icd
2016-11-14 12:08:57 +01:00
}:
buildPythonPackage rec {
pname = "pyopencl";
2018-01-20 11:59:26 +01:00
version = "2018.1";
2016-11-14 12:08:57 +01:00
2017-12-31 11:31:47 +01:00
checkInputs = [ pytest ];
buildInputs = [ opencl-headers ocl-icd ];
2016-11-14 12:08:57 +01:00
propagatedBuildInputs = [ numpy cffi pytools decorator appdirs six Mako ];
2017-06-06 11:34:41 +02:00
src = fetchPypi {
inherit pname version;
2018-01-20 11:59:26 +01:00
sha256 = "b692966bbaaa65ef8949ee25660d6b0cc7cbadc7f4a35eb9c5139dfa4dde6d4a";
2016-11-14 12:08:57 +01:00
};
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" ""
'';
2016-11-14 12:08:57 +01:00
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
doCheck = false;
meta = with stdenv.lib; {
2016-11-14 12:08:57 +01:00
description = "Python wrapper for OpenCL";
homepage = https://github.com/pyopencl/pyopencl;
license = licenses.mit;
maintainers = [ maintainers.fridh ];
2016-11-14 12:08:57 +01:00
};
2017-01-20 02:48:24 +03:00
}