1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "mpmath";
8 version = "1.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "fc17abe05fbab3382b61a123c398508183406fa132e0223874578e20946499f6";
13 };
14
15 # error: invalid command 'test'
16 doCheck = false;
17
18 meta = with stdenv.lib; {
19 homepage = "http://mpmath.org/";
20 description = "A pure-Python library for multiprecision floating arithmetic";
21 license = licenses.bsd3;
22 maintainers = with maintainers; [ lovek323 ];
23 platforms = platforms.unix;
24 };
25
26}