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