biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / mpmath / default.nix
blob308b57376dce2cf2251e21b856f40d639c1c4170
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   gmpy2,
6   isPyPy,
7   setuptools,
8   pytestCheckHook,
10   # Reverse dependency
11   sage,
14 buildPythonPackage rec {
15   pname = "mpmath";
16   version = "1.3.0";
17   format = "setuptools";
19   src = fetchFromGitHub {
20     owner = "mpmath";
21     repo = "mpmath";
22     rev = "refs/tags/${version}";
23     hash = "sha256-9BGcaC3TyolGeO65/H42T/WQY6z5vc1h+MA+8MGFChU=";
24   };
26   nativeBuildInputs = [ setuptools ];
28   optional-dependencies = {
29     gmpy = lib.optionals (!isPyPy) [ gmpy2 ];
30   };
32   passthru.tests = {
33     inherit sage;
34   };
36   nativeCheckInputs = [ pytestCheckHook ];
38   meta = with lib; {
39     homepage = "https://mpmath.org/";
40     description = "Pure-Python library for multiprecision floating arithmetic";
41     license = licenses.bsd3;
42     maintainers = with maintainers; [ lovek323 ];
43     platforms = platforms.unix;
44   };