14 buildPythonPackage rec {
15 pname = "theano-pymc";
17 disabled = pythonOlder "3.6";
20 pname = "Theano-PyMC";
22 sha256 = "5da6c2242ea72a991c8446d7fe7d35189ea346ef7d024c890397011114bf10fc";
25 # No need for coverage stats in Nix builds
27 substituteInPlace setup.py --replace ", 'pytest-cov'" ""
30 propagatedBuildInputs = [
37 # The test suite is computationally intensive and test failures are not
38 # indicative for package usability hence tests are disabled by default.
40 pythonImportsCheck = [ "theano" ];
43 description = "PyMC theano fork";
44 homepage = "https://github.com/majidaldo/Theano-PyMC";
45 license = lib.licenses.asl20;
46 maintainers = with lib.maintainers; [ nidabdella ];