python.pkgs.MySQL_python: remove
Reasons: - No release since 2014 - deprecated by upstream - no longer compatible with newer libmysql versions
This commit is contained in:
parent
137a90c691
commit
4a53284bc0
2 changed files with 0 additions and 35 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue