nixpkgs/pkgs/development/python-modules/pymc3/default.nix

73 lines
1.4 KiB
Nix
Raw Normal View History

2018-04-28 21:06:12 +02:00
{ lib
, fetchPypi
, buildPythonPackage
, pythonOlder
, Theano
, pandas
, patsy
, joblib
, tqdm
, six
, h5py
, arviz
, packaging
2018-04-28 21:06:12 +02:00
, pytest
, nose
, parameterized
2020-10-04 00:50:03 +02:00
, fastprogress
, typing-extensions
2018-04-28 21:06:12 +02:00
}:
buildPythonPackage rec {
pname = "pymc3";
2020-08-16 19:31:11 +02:00
version = "3.9.3";
2018-04-28 21:06:12 +02:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:11 +02:00
sha256 = "abe046f5a5d0e5baee80b7c4bc0a4c218f61b517b62d77be4f89cf4784c27d78";
2018-04-28 21:06:12 +02:00
};
# No need for coverage stats in Nix builds
postPatch = ''
substituteInPlace setup.py --replace ", 'pytest-cov'" ""
'';
propagatedBuildInputs = [
Theano
pandas
patsy
joblib
tqdm
six
h5py
arviz
packaging
2020-10-04 00:50:03 +02:00
fastprogress
typing-extensions
2018-04-28 21:06:12 +02:00
];
checkInputs = [
pytest
nose
parameterized
];
# The test suite is computationally intensive and test failures are not
# indicative for package usability hence tests are disabled by default.
doCheck = false;
2020-10-04 00:50:03 +02:00
pythonImportsCheck = [ "pymc3" ];
2018-04-28 21:06:12 +02:00
# For some reason tests are run as a part of the *install* phase if enabled.
# Theano writes compiled code to ~/.theano hence we set $HOME.
preInstall = "export HOME=$(mktemp -d)";
postInstall = "rm -rf $HOME";
meta = {
description = "Bayesian estimation, particularly using Markov chain Monte Carlo (MCMC)";
homepage = "https://github.com/pymc-devs/pymc3";
2018-04-28 21:06:12 +02:00
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ilya-kolpakov ];
};
}