2018-03-09 11:57:28 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bumps";
|
2019-09-28 10:42:56 +01:00
|
|
|
version = "0.7.12";
|
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-09-28 10:42:56 +01:00
|
|
|
sha256 = "0a8m56bwyi0gdrf3kgkdw3cajyxlr40qrj1xlh5yn4qqjbz7ym02";
|
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;
|
|
|
|
};
|
|
|
|
}
|