Files
nixpkgs/pkgs/development/python-modules/uncertainties/default.nix
R. RyanTM 66e0a3c6a5 python37Packages.uncertainties: 3.1.1 -> 3.1.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-uncertainties/versions
2019-08-20 09:37:24 -07:00

24 lines
613 B
Nix

{ stdenv, fetchPypi, buildPythonPackage, nose, numpy }:
buildPythonPackage rec {
pname = "uncertainties";
version = "3.1.2";
src = fetchPypi {
inherit pname version;
sha256 = "07kahmr0vfmncf8y4x6ldjrghnd4gsf0fwykgjj5ijvqi9xc21xs";
};
buildInputs = [ nose numpy ];
# No tests included
doCheck = false;
meta = with stdenv.lib; {
homepage = https://pythonhosted.org/uncertainties/;
description = "Transparent calculations with uncertainties on the quantities involved (aka error propagation)";
maintainers = with maintainers; [ rnhmjoj ];
license = licenses.bsd3;
};
}