aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/pycuda/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pycuda/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pycuda/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pycuda/default.nix b/nixpkgs/pkgs/development/python-modules/pycuda/default.nix
index a03662aa961..b9a75734b8e 100644
--- a/nixpkgs/pkgs/development/python-modules/pycuda/default.nix
+++ b/nixpkgs/pkgs/development/python-modules/pycuda/default.nix
@@ -13,7 +13,6 @@
, python
, mkDerivation
, stdenv
-, isPy3k
}:
let
compyte = import ./compyte.nix {
@@ -29,11 +28,12 @@ buildPythonPackage rec {
sha256 = "ada56ce98a41f9f95fe18809f38afbae473a5c62d346cfa126a2d5477f24cc8a";
};
- preConfigure = ''
+ preConfigure = with stdenv.lib.versions; ''
${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \
--boost-lib-dir=${boost}/lib \
--no-use-shipped-boost \
- --boost-python-libname=boost_python${stdenv.lib.optionalString isPy3k "3"}
+ --boost-python-libname=boost_python${major python.version}${minor python.version} \
+ --cuda-root=${cudatoolkit}
'';
postInstall = ''