diff --git a/pkgs/development/python-modules/theano/default.nix b/pkgs/development/python-modules/theano/default.nix deleted file mode 100644 index 8d10dc61a9a1..000000000000 --- a/pkgs/development/python-modules/theano/default.nix +++ /dev/null @@ -1,117 +0,0 @@ -{ - lib, - stdenv, - runCommandCC, - fetchPypi, - buildPythonPackage, - isPyPy, - pythonOlder, - isPy3k, - nose, - numpy, - scipy, - setuptools, - six, - libgpuarray, - config, - cudaSupport ? config.cudaSupport, - cudaPackages ? { }, - cudnnSupport ? cudaSupport, -}: - -let - inherit (cudaPackages) cudatoolkit cudnn; -in - -assert cudnnSupport -> cudaSupport; - -let - wrapped = - command: buildTop: buildInputs: - runCommandCC "${command}-wrapped" { inherit buildInputs; } '' - type -P '${command}' || { echo '${command}: not found'; exit 1; } - cat > "$out" <