Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 23 lines 613 B view raw
1{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }: 2 3buildPythonPackage rec { 4 pname = "uncertainties"; 5 version = "3.1.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "07kahmr0vfmncf8y4x6ldjrghnd4gsf0fwykgjj5ijvqi9xc21xs"; 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}