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

45 lines
951 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-02-26 10:55:14 +01:00
version = "2018.1.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-02-26 10:55:14 +01:00
sha256 = "29683b47ec729c77a1be4d6fae2bd3718ca4cfcbe14655261a3a14d5bf55530a";
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
}