lol

Merge pull request #33016 from dylex/pycuda

pycuda: fix boost_python3 link

authored by

Frederik Rietdijk and committed by
GitHub
ae15ee42 428708fe

+2 -4
+2 -3
pkgs/development/python-modules/pycuda/default.nix
··· 13 , python 14 , mkDerivation 15 , stdenv 16 - , pythonOlder 17 - , isPy35 18 }: 19 let 20 compyte = import ./compyte.nix { ··· 35 ${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \ 36 --boost-lib-dir=${boost}/lib \ 37 --no-use-shipped-boost \ 38 - --boost-python-libname=boost_python 39 ''; 40 41 postInstall = ''
··· 13 , python 14 , mkDerivation 15 , stdenv 16 + , isPy3k 17 }: 18 let 19 compyte = import ./compyte.nix { ··· 34 ${python.interpreter} configure.py --boost-inc-dir=${boost.dev}/include \ 35 --boost-lib-dir=${boost}/lib \ 36 --no-use-shipped-boost \ 37 + --boost-python-libname=boost_python${stdenv.lib.optionalString isPy3k "3"} 38 ''; 39 40 postInstall = ''
-1
pkgs/top-level/python-packages.nix
··· 6524 pycuda = callPackage ../development/python-modules/pycuda rec { 6525 cudatoolkit = pkgs.cudatoolkit75; 6526 inherit (pkgs.stdenv) mkDerivation; 6527 - inherit pythonOlder; 6528 }; 6529 6530 pyphen = callPackage ../development/python-modules/pyphen {};
··· 6524 pycuda = callPackage ../development/python-modules/pycuda rec { 6525 cudatoolkit = pkgs.cudatoolkit75; 6526 inherit (pkgs.stdenv) mkDerivation; 6527 }; 6528 6529 pyphen = callPackage ../development/python-modules/pyphen {};