depot/third_party/nixpkgs/pkgs/development/python-modules/mpmath/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

26 lines
576 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "mpmath";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6";
};
# error: invalid command 'test'
doCheck = false;
meta = with stdenv.lib; {
homepage = "http://mpmath.org/";
description = "A pure-Python library for multiprecision floating arithmetic";
license = licenses.bsd3;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}