2018-03-09 11:57:28 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bumps";
|
2019-10-16 10:43:04 +01:00
|
|
|
version = "0.7.13";
|
2018-03-09 11:57:28 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [six];
|
|
|
|
|
|
|
|
# Bumps does not provide its own tests.py, so the test
|
|
|
|
# always fails
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-16 10:43:04 +01:00
|
|
|
sha256 = "fdcf335b800d892edfdbc87fdd539cb45166d8667edbec3dfbb1a3b5c3a35547";
|
2018-03-09 11:57:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://www.reflectometry.org/danse/software.html;
|
|
|
|
description = "Data fitting with bayesian uncertainty analysis";
|
|
|
|
maintainers = with maintainers; [ rprospero ];
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
};
|
|
|
|
}
|