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