1{ stdenv, buildPythonPackage, fetchPypi, six}:
2
3buildPythonPackage rec {
4 pname = "bumps";
5 version = "0.7.11";
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 = "16d24a7f965592d9b02f96e68e6aa70d6fb59abe4db37bb14c4b60c509a3c2ef";
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}