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

45 lines
849 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";
2020-03-29 12:56:39 +01:00
version = "0.7.5";
2016-11-14 11:23:53 +00:00
src = fetchPypi {
inherit pname version;
2020-03-29 12:56:39 +01:00
sha256 = "d01f4264c8379ef2962a93aacb002d491b92ef9b5b22b45f77e7821dfa87bef7";
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
};
}