about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pycuda
diff options
context:
space:
mode:
authorartuuge <artuuge@gmail.com>2016-06-15 16:24:21 +0200
committerartuuge <artuuge@gmail.com>2016-06-15 16:24:21 +0200
commit1a55add4ca363ba2099dcd8edf47684d212903da (patch)
treef39438780b3e84395aa08a8192110deac1dde248 /pkgs/development/python-modules/pycuda
parentbe0ade9d0343905ae3ca439eae8d3b179592eb2e (diff)
downloadnixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar.gz
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar.bz2
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar.lz
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar.xz
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.tar.zst
nixlib-1a55add4ca363ba2099dcd8edf47684d212903da.zip
enable the tests only for python older than 3.5
Diffstat (limited to 'pkgs/development/python-modules/pycuda')
-rw-r--r--pkgs/development/python-modules/pycuda/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pycuda/default.nix b/pkgs/development/python-modules/pycuda/default.nix
index df507f9b6ad0..c8be20bbe0a9 100644
--- a/pkgs/development/python-modules/pycuda/default.nix
+++ b/pkgs/development/python-modules/pycuda/default.nix
@@ -11,6 +11,7 @@
 , python
 , mkDerivation
 , stdenv
+, pythonOlder
 }:
 let
   compyte = import ./compyte.nix {
@@ -44,6 +45,8 @@ buildPythonPackage rec {
     ln -s ${compyte} $out/${python.sitePackages}/pycuda/compyte 
   '';
 
+  doCheck = pythonOlder "3.5";
+
   propagatedBuildInputs = [
     numpy
     pytools