python.pkgs.MySQL_python: remove

Reasons:

- No release since 2014
- deprecated by upstream
- no longer compatible with newer libmysql versions

(cherry picked from commit 4a53284bc0)
This commit is contained in:
Jörg Thalheim 2019-09-09 13:18:07 +01:00
parent 28367c64fd
commit be098bacad
No known key found for this signature in database
GPG key ID: B3F5D81B0C6967C4
2 changed files with 0 additions and 35 deletions

View file

@ -1,33 +0,0 @@
{ stdenv
, buildPythonPackage
, isPy3k
, fetchPypi
, nose
, pkgs
}:
buildPythonPackage rec {
pname = "MySQL-python";
version = "1.2.5";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441";
};
checkInputs = [ nose ];
nativeBuildInputs = [ pkgs.mysql.connector-c ];
buildInputs = [ pkgs.mysql.connector-c ];
# plenty of failing tests
doCheck = false;
meta = with stdenv.lib; {
description = "MySQL database binding for Python";
homepage = https://sourceforge.net/projects/mysql-python;
license = licenses.gpl3;
};
}

View file

@ -3873,8 +3873,6 @@ in {
monotonic = callPackage ../development/python-modules/monotonic { };
MySQL_python = callPackage ../development/python-modules/mysql_python { };
mysql-connector = callPackage ../development/python-modules/mysql-connector { };
namebench = callPackage ../development/python-modules/namebench { };