2018-03-09 11:57:28 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, six}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bumps";
|
2020-07-31 09:56:36 +01:00
|
|
|
version = "0.7.16";
|
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;
|
2020-07-31 09:56:36 +01:00
|
|
|
sha256 = "3594452487b8404f1efaace9b70aefaeb345fa44dd74349f7829a61161d2f69a";
|
2018-03-09 11:57:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.reflectometry.org/danse/software.html";
|
2018-03-09 11:57:28 +00:00
|
|
|
description = "Data fitting with bayesian uncertainty analysis";
|
|
|
|
maintainers = with maintainers; [ rprospero ];
|
|
|
|
license = licenses.publicDomain;
|
|
|
|
};
|
|
|
|
}
|