Unverified Commit fcc78f1c authored by TomaSajt's avatar TomaSajt
Browse files

python312Packages.gmpy2: 2.2.0a2 -> 2.2.1

parent 33fbbdc8
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -4,7 +4,6 @@
  buildPythonPackage,
  fetchFromGitHub,
  isPyPy,
  pythonOlder,
  setuptools,
  gmp,
  mpfr,
@@ -19,16 +18,16 @@

buildPythonPackage rec {
  pname = "gmpy2";
  version = "2.2.0a2";
  version = "2.2.1";
  pyproject = true;

  disabled = isPyPy || pythonOlder "3.7";
  disabled = isPyPy;

  src = fetchFromGitHub {
    owner = "aleaxit";
    repo = "gmpy";
    tag = "gmpy2-${version}";
    hash = "sha256-luLEDEY1cezhzZo4fXmM/MUg2YyAaz7n0HwSpbNayP8=";
    tag = "v${version}";
    hash = "sha256-wrMN3kqLnjItoybKYeo4Pp2M0uma7Kg0JEQM8lr6OI0=";
  };

  build-system = [ setuptools ];