Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }: 2 3buildPythonPackage rec { 4 pname = "uncertainties"; 5 version = "3.0.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1hp00k10d5n69s446flss8b4rd02wq8dscvakv7ylfyf2p8y564s"; 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}