python.pkgs.MySQL_python: remove (#68354)

python.pkgs.MySQL_python: remove
This commit is contained in:
Jörg Thalheim 2019-09-09 13:39:45 +01:00 committed by GitHub
commit 779cde20bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 { };