python3.pkgs.mpmath: 1.2.1 -> 1.3.0 (#248319)

This commit is contained in:
Theodore Ni 2023-08-10 22:50:24 -07:00 committed by GitHub
parent 9bd169969f
commit 85d724f49a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,31 +1,33 @@
{ lib
, buildPythonPackage
, fetchPypi
, fetchpatch
, setuptools-scm
, fetchFromGitHub
, gmpy2
, isPyPy
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "mpmath";
version = "1.2.1";
version = "1.3.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "79ffb45cf9f4b101a807595bcb3e72e0396202e0b1d25d689134b48c4216a81a";
src = fetchFromGitHub {
owner = "mpmath";
repo = "mpmath";
rev = "refs/tags/${version}";
hash = "sha256-9BGcaC3TyolGeO65/H42T/WQY6z5vc1h+MA+8MGFChU=";
};
patches = [
(fetchpatch {
name = "CVE-2021-29063.patch";
url = "https://github.com/fredrik-johansson/mpmath/commit/46d44c3c8f3244017fe1eb102d564eb4ab8ef750.patch";
hash = "sha256-DaZ6nj9rEsjTAomu481Ujun364bL5E6lkXFvgBfHyeA=";
})
nativeBuildInputs = [
setuptools
];
nativeBuildInputs = [
setuptools-scm
];
passthru.optional-dependencies = {
gmpy = lib.optionals (!isPyPy) [
gmpy2
];
};
nativeCheckInputs = [
pytestCheckHook
@ -38,5 +40,4 @@ buildPythonPackage rec {
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}