2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six}:
|
2018-03-09 11:57:28 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bumps";
|
2020-12-23 12:06:29 +00:00
|
|
|
version = "0.8.0";
|
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-12-23 12:06:29 +00:00
|
|
|
sha256 = "9f92c05effd8175763799d19ca55592e89b053318f611148a6725159aea41d67";
|
2018-03-09 11:57:28 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://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;
|
|
|
|
};
|
|
|
|
}
|