472aeafc57
GitOrigin-RevId: c31898adf5a8ed202ce5bea9f347b1c6871f32d1
45 lines
870 B
Nix
45 lines
870 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
gmpy2,
|
|
isPyPy,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
|
|
# Reverse dependency
|
|
sage,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mpmath";
|
|
version = "1.3.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mpmath";
|
|
repo = "mpmath";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-9BGcaC3TyolGeO65/H42T/WQY6z5vc1h+MA+8MGFChU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
optional-dependencies = {
|
|
gmpy = lib.optionals (!isPyPy) [ gmpy2 ];
|
|
};
|
|
|
|
passthru.tests = {
|
|
inherit sage;
|
|
};
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://mpmath.org/";
|
|
description = "Pure-Python library for multiprecision floating arithmetic";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|