blob: 824fd0694a9722f2f2ee8231199557ec1d4cb6f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch2,
setuptools,
numpy,
scipy,
h5py,
truncnorm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "bayespy";
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "bayespy";
repo = "bayespy";
tag = version;
hash = "sha256-kx87XY4GCL1PQIeZyovEbrPyCC/EVA6Hdvt+3P/D6VI=";
};
patches = [
(fetchpatch2 {
url = "https://salsa.debian.org/python-team/packages/python-bayespy/-/raw/071f54815608b31aebac8f8e83bc532b2c632a48/debian/patches/numpy2.4-compat.patch";
hash = "sha256-Tk3z94+vbGaSIqGFFRQZz0pcXI1Fzcbnva3oWnv502U=";
})
];
postPatch = ''
substituteInPlace versioneer.py \
--replace-fail SafeConfigParser ConfigParser \
--replace-fail readfp read_file
'';
build-system = [ setuptools ];
dependencies = [
numpy
scipy
h5py
truncnorm
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "bayespy" ];
meta = {
homepage = "http://www.bayespy.org";
description = "Variational Bayesian inference tools for Python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
};
}
|