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
59
60
61
62
63
64
65
66
67
68
69
|
{
lib,
aiohttp,
blinker,
buildPythonPackage,
cloudpickle,
dill,
fetchPypi,
h5py,
matplotlib,
msgpack,
numpy,
plotly,
python-socketio,
python,
scipy,
setuptools,
versioningit,
}:
buildPythonPackage rec {
pname = "bumps";
version = "1.0.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-O5GUoyDlB0X2Z/O3JprN3omoOBDIhv0xrKfUSHTgGpM=";
};
pythonRemoveDeps = [
"mpld3" # not packaged
];
build-system = [
setuptools
versioningit
];
dependencies = [
aiohttp
blinker
cloudpickle
dill
h5py
matplotlib
msgpack
numpy
plotly
python
python-socketio
scipy
# mpld3 # not packaged
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "bumps" ];
meta = {
description = "Data fitting with bayesian uncertainty analysis";
mainProgram = "bumps";
homepage = "https://bumps.readthedocs.io/";
changelog = "https://github.com/bumps/bumps/releases/tag/v${version}";
license = lib.licenses.publicDomain;
maintainers = with lib.maintainers; [ rprospero ];
};
}
|