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

73 lines
1.3 KiB
Nix
Raw Normal View History

2017-08-28 08:33:16 +00:00
{ buildPythonPackage
, fetchPypi
2016-06-14 22:47:55 +00:00
, fetchFromGitHub
2017-08-28 08:33:16 +00:00
, Mako
2016-06-14 22:47:55 +00:00
, boost
, numpy
, pytools
, pytest
, decorator
, appdirs
, six
, cudatoolkit
, python
, mkDerivation
, stdenv
, pythonOlder
, isPy35
2016-06-14 22:47:55 +00:00
}:
let
compyte = import ./compyte.nix {
inherit mkDerivation fetchFromGitHub;
};
in
buildPythonPackage rec {
pname = "pycuda";
2017-08-28 08:33:16 +00:00
version = "2017.1.1";
name = "${pname}-${version}";
2016-06-14 22:47:55 +00:00
2017-08-28 08:33:16 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0qxmcjax32p1ywicw9sha2rvfbak4kjbx9pq57j3wq4cwf296nkb";
};
2016-06-14 22:47:55 +00:00
preConfigure = ''
2017-08-28 08:33:16 +00:00
${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \
--boost-lib-dir=${boost}/lib \
--no-use-shipped-boost \
--boost-python-libname=boost_python
2016-06-14 22:47:55 +00:00
'';
postInstall = ''
2017-08-28 08:33:16 +00:00
ln -s ${compyte} $out/${python.sitePackages}/pycuda/compyte
2016-06-14 22:47:55 +00:00
'';
# Requires access to libcuda.so.1 which is provided by the driver
doCheck = false;
checkPhase = ''
py.test
'';
2016-06-14 22:47:55 +00:00
propagatedBuildInputs = [
numpy
pytools
pytest
decorator
appdirs
six
cudatoolkit
compyte
python
2017-08-28 08:33:16 +00:00
Mako
];
2016-06-14 22:47:55 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/inducer/pycuda/;
description = "CUDA integration for Python.";
license = licenses.mit;
maintainers = with maintainers; [ artuuge ];
};
}