Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / bumps / default.nix
blob733494a8314ac05aa295d95f38acf15b53243463
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "bumps";
9   version = "0.9.2";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-PhoxjnkeLGL8vgEp7UubXKlS8p44TUkJ3c4SqRjKFJA=";
17   };
19   # Module has no tests
20   doCheck = false;
22   pythonImportsCheck = [
23     "bumps"
24   ];
26   meta = with lib; {
27     description = "Data fitting with bayesian uncertainty analysis";
28     mainProgram = "bumps";
29     homepage = "https://bumps.readthedocs.io/";
30     changelog = "https://github.com/bumps/bumps/releases/tag/v${version}";
31     license = licenses.publicDomain;
32     maintainers = with maintainers; [ rprospero ];
33   };