summary refs log tree commit diff
path: root/pkgs/development/python-modules/bumps/default.nix
blob: d1926c9631aa71a99b90271c8b33eb4f94a57331 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, six
}:

buildPythonPackage rec {
  pname = "bumps";
  version = "0.9.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-BY9kg0ksKfrpQgsl1aDDJJ+zKJmURqwTtKxlITxse+o=";
  };

  propagatedBuildInputs = [
    six
  ];

  # Module has no tests
  doCheck = false;

  pythonImportsCheck = [
    "bumps"
  ];

  meta = with lib; {
    description = "Data fitting with bayesian uncertainty analysis";
    homepage = "https://bumps.readthedocs.io/";
    license = licenses.publicDomain;
    maintainers = with maintainers; [ rprospero ];
  };
}