1{ lib, buildPythonPackage, fetchPypi, six}:
2
3buildPythonPackage rec {
4 pname = "bumps";
5 version = "0.8.0";
6
7 propagatedBuildInputs = [six];
8
9 # Bumps does not provide its own tests.py, so the test
10 # always fails
11 doCheck = false;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "9f92c05effd8175763799d19ca55592e89b053318f611148a6725159aea41d67";
16 };
17
18 meta = with lib; {
19 homepage = "https://www.reflectometry.org/danse/software.html";
20 description = "Data fitting with bayesian uncertainty analysis";
21 maintainers = with maintainers; [ rprospero ];
22 license = licenses.publicDomain;
23 };
24}