Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / uncertainties / default.nix
blobbf08374ece230b91fcd4f620c0d19db5e721609b
1 { lib, fetchPypi, buildPythonPackage
2 , nose, numpy, future
3 }:
5 buildPythonPackage rec {
6   pname = "uncertainties";
7   version = "3.1.7";
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-gBEeCDnyOcWyM8tHcgF7SDoLehVzpYG5Krd0ajXm+qs=";
12   };
14   propagatedBuildInputs = [ future ];
15   nativeCheckInputs = [ nose numpy ];
17   checkPhase = ''
18     nosetests -sv
19   '';
21   meta = with lib; {
22     homepage = "https://pythonhosted.org/uncertainties/";
23     description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)";
24     maintainers = with maintainers; [ rnhmjoj ];
25     license = licenses.bsd3;
26   };