Skip to content

Commit 0fd2b14

Browse files
committed
python311Packages.pymc: 5.10.4 -> 5.13.1
Changelog: https://github.com/pymc-devs/pymc/releases/tag/v5.13.1
1 parent ad685bb commit 0fd2b14

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

pkgs/development/python-modules/pymc/default.nix

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,46 +3,48 @@
33
, buildPythonPackage
44
, cachetools
55
, cloudpickle
6-
, fastprogress
76
, fetchFromGitHub
87
, numpy
8+
, pandas
99
, pytensor
1010
, pythonOlder
11+
, rich
1112
, scipy
12-
, typing-extensions
1313
, setuptools
14+
, typing-extensions
1415
}:
1516

1617
buildPythonPackage rec {
1718
pname = "pymc";
18-
version = "5.10.4";
19+
version = "5.13.1";
1920
pyproject = true;
2021

21-
disabled = pythonOlder "3.9";
22+
disabled = pythonOlder "3.10";
2223

2324
src = fetchFromGitHub {
2425
owner = "pymc-devs";
2526
repo = "pymc";
2627
rev = "refs/tags/v${version}";
27-
hash = "sha256-tiOXbryY2TmeBVrG5cIMeDJ4alolBQ5LosdfH3tpVOA=";
28+
hash = "sha256-SSAn7nbKhXGeEvASKQITUs3+ix3j37u9JTkNiG+1tZ0=";
2829
};
2930

30-
build-system = [
31-
setuptools
32-
];
33-
3431
postPatch = ''
3532
substituteInPlace setup.py \
3633
--replace-fail ', "pytest-cov"' ""
3734
'';
3835

39-
propagatedBuildInputs = [
36+
build-system = [
37+
setuptools
38+
];
39+
40+
dependencies = [
4041
arviz
4142
cachetools
4243
cloudpickle
43-
fastprogress
4444
numpy
45+
pandas
4546
pytensor
47+
rich
4648
scipy
4749
typing-extensions
4850
];

0 commit comments

Comments
 (0)