summary refs log tree commit diff
path: root/pkgs/development/python-modules/mpmath/default.nix
blob: 1cbb8b04130b64b4fb98237c5219edc843bc3677 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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;
  };

}