2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six}:
|
2018-03-09 11:57:28 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bumps";
|
2021-11-25 22:46:40 +00:00
|
|
|
version = "0.8.1";
|
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;
|
2021-11-25 22:46:40 +00:00
|
|
|
sha256 = "f4f2ee712a1e468a2ce5c0a32f67739a83331f0cb7b9c50b9e7510daefc12169";
|
2018-03-09 11:57:28 +00:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-02 07:58:50 +00: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;
|
|
|
|
};
|
|
|
|
}
|