1{ stdenv, buildPythonPackage, fetchPypi, six}:
2
3buildPythonPackage rec {
4 pname = "bumps";
5 version = "0.7.16";
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 = "3594452487b8404f1efaace9b70aefaeb345fa44dd74349f7829a61161d2f69a";
16 };
17
18 meta = with stdenv.lib; {
19 homepage = "http://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}