gmpy2: 2.0.6 -> 2.0.8

Also move outside python-packages.nix
This commit is contained in:
Florian Klink 2018-09-05 23:34:08 +02:00
parent 7339a4004c
commit e053386c92
2 changed files with 26 additions and 22 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchurl, isPyPy, gmp, mpfr, libmpc } :
let
pname = "gmpy2";
version = "2.0.8";
in
buildPythonPackage {
inherit pname version;
disabled = isPyPy;
src = fetchurl {
url = "mirror://pypi/g/gmpy2/${pname}-${version}.zip";
sha256 = "0grx6zmi99iaslm07w6c2aqpnmbkgrxcqjrqpfq223xri0r3w8yx";
};
buildInputs = [ gmp mpfr libmpc ];
meta = with stdenv.lib; {
description = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x";
homepage = http://code.google.com/p/gmpy/;
license = licenses.gpl3Plus;
};
}

View file

@ -2626,28 +2626,7 @@ in {
gmpy = callPackage ../development/python-modules/gmpy { };
gmpy2 = buildPythonPackage rec {
name = "gmpy2-2.0.6";
disabled = isPyPy;
src = pkgs.fetchurl {
url = "mirror://pypi/g/gmpy2/${name}.zip";
sha256 = "5041d0ae24407c24487106099f5bcc4abb1a5f58d90e6712cc95321975eddbd4";
};
buildInputs = [
pkgs.gcc
pkgs.gmp
pkgs.mpfr
pkgs.libmpc
];
meta = {
description = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x";
homepage = http://code.google.com/p/gmpy/;
license = licenses.gpl3Plus;
};
};
gmpy2 = callPackage ../development/python-modules/gmpy2 { };
gmusicapi = with pkgs; buildPythonPackage rec {
name = "gmusicapi-10.1.0";