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

45 lines
847 B
Nix
Raw Normal View History

2016-11-14 11:23:53 +00:00
{ stdenv
, fetchPypi
2016-11-14 11:23:53 +00:00
, buildPythonPackage
, sphinx
, pytestcov
, pytest
, Mako
, numpy
, funcsigs
, withCuda ? false, pycuda
, withOpenCL ? true, pyopencl
}:
buildPythonPackage rec {
pname = "reikna";
version = "0.6.8";
2016-11-14 11:23:53 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "34d92786237bef9ab5d37d78f01c155d0dcd1fc24df7782af9498a9f1786890c";
2016-11-14 11:23:53 +00:00
};
checkInputs = [ sphinx pytestcov pytest ];
2016-11-14 11:23:53 +00:00
propagatedBuildInputs = [ Mako numpy funcsigs ]
++ stdenv.lib.optional withCuda pycuda
++ stdenv.lib.optional withOpenCL pyopencl;
checkPhase = ''
py.test
'';
# Requires device
doCheck = false;
meta = {
description = "GPGPU algorithms for PyCUDA and PyOpenCL";
homepage = https://github.com/fjarri/reikna;
2016-11-14 11:23:53 +00:00
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.fridh ];
2016-11-14 11:23:53 +00:00
};
}