diff --git a/pkgs/development/python-modules/theano-pymc/default.nix b/pkgs/development/python-modules/theano-pymc/default.nix deleted file mode 100644 index 31c08585e0064..0000000000000 --- a/pkgs/development/python-modules/theano-pymc/default.nix +++ /dev/null @@ -1,51 +0,0 @@ -{ - lib, - fetchPypi, - buildPythonPackage, - pythonOlder, - pandas, - numpy, - scipy, - filelock, - pytest, - nose, - parameterized, -}: - -buildPythonPackage rec { - pname = "theano-pymc"; - version = "1.1.2"; - format = "setuptools"; - disabled = pythonOlder "3.6"; - - src = fetchPypi { - pname = "Theano-PyMC"; - inherit version; - sha256 = "5da6c2242ea72a991c8446d7fe7d35189ea346ef7d024c890397011114bf10fc"; - }; - - # No need for coverage stats in Nix builds - postPatch = '' - substituteInPlace setup.py --replace ", 'pytest-cov'" "" - ''; - - propagatedBuildInputs = [ - pandas - numpy - scipy - filelock - ]; - - # The test suite is computationally intensive and test failures are not - # indicative for package usability hence tests are disabled by default. - doCheck = false; - pythonImportsCheck = [ "theano" ]; - - meta = { - description = "PyMC theano fork"; - homepage = "https://github.com/majidaldo/Theano-PyMC"; - license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ nidabdella ]; - broken = true; - }; -} diff --git a/pkgs/development/python-modules/theano/default.nix b/pkgs/development/python-modules/theano/default.nix deleted file mode 100644 index 8d10dc61a9a18..0000000000000 --- 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" <