1{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }: 2 3buildPythonPackage rec { 4 pname = "uncertainties"; 5 version = "3.0.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "91db922d54dff6094b4ea0d6e058f713a992cdf42e3ebaf73278e1893bfa2942"; 10 }; 11 12 buildInputs = [ nose numpy ]; 13 14 # No tests included 15 doCheck = false; 16 17 meta = with stdenv.lib; { 18 homepage = https://pythonhosted.org/uncertainties/; 19 description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)"; 20 maintainers = with maintainers; [ rnhmjoj ]; 21 license = licenses.bsd3; 22 }; 23}