about summary refs log tree commit diff
path: root/pkgs/development/python-modules/uncertainties/default.nix
blob: 5151ee638482c984554a329b9499c0dd641ccf98 (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
{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }:

buildPythonPackage rec {
  name = "${pname}-${version}";
  pname = "uncertainties";
  version = "3.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "de0765cac6911e5afa93ee941063a07b4a98dbd9c314c5eea4ab14bfff0054a4";
  };

  buildInputs = [ nose numpy ];

  # No tests included
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://pythonhosted.org/uncertainties/;
    description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)";
    maintainer = with maintainers; [ rnhmjoj ];
    license = licenses.bsd3;
  };
}