mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
python.pkgs.MySQL_python: remove (#68354)
python.pkgs.MySQL_python: remove
This commit is contained in:
commit
779cde20bd
@ -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 New Issue
Block a user