3
0
Fork 0
forked from mirrors/nixpkgs
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";
2019-05-30 07:47:55 +01:00
version = "0.7.4";
2016-11-14 11:23:53 +00:00
src = fetchPypi {
inherit pname version;
2019-05-30 07:47:55 +01:00
sha256 = "52bbce24fa1fd7bb950d38ce9b60f497dd00ac6b26688d80ab9bce709f063e71";
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
};
}