1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pythonOlder,
6}:
7
8buildPythonPackage rec {
9 pname = "bumps";
10 version = "0.9.2";
11 format = "setuptools";
12
13 disabled = pythonOlder "3.7";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-PhoxjnkeLGL8vgEp7UubXKlS8p44TUkJ3c4SqRjKFJA=";
18 };
19
20 # Module has no tests
21 doCheck = false;
22
23 pythonImportsCheck = [ "bumps" ];
24
25 meta = with lib; {
26 description = "Data fitting with bayesian uncertainty analysis";
27 mainProgram = "bumps";
28 homepage = "https://bumps.readthedocs.io/";
29 changelog = "https://github.com/bumps/bumps/releases/tag/v${version}";
30 license = licenses.publicDomain;
31 maintainers = with maintainers; [ rprospero ];
32 };
33}