pythonPackages.MySQL_python: refactor move to python-modules
This commit is contained in:
parent
05fb6b5dee
commit
f2329dc489
32
pkgs/development/python-modules/mysql_python/default.nix
Normal file
32
pkgs/development/python-modules/mysql_python/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ nose ];
|
||||||
|
propagatedBuildInputs = [ 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -2893,29 +2893,7 @@ in {
|
|||||||
|
|
||||||
monotonic = callPackage ../development/python-modules/monotonic { };
|
monotonic = callPackage ../development/python-modules/monotonic { };
|
||||||
|
|
||||||
MySQL_python = buildPythonPackage rec {
|
MySQL_python = callPackage ../development/python-modules/mysql_python { };
|
||||||
name = "MySQL-python-1.2.5";
|
|
||||||
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
# plenty of failing tests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/M/MySQL-python/${name}.zip";
|
|
||||||
sha256 = "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = with self; [ nose ];
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ pkgs.mysql.connector-c ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "MySQL database binding for Python";
|
|
||||||
|
|
||||||
homepage = https://sourceforge.net/projects/mysql-python;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
mysql-connector = callPackage ../development/python-modules/mysql-connector { };
|
mysql-connector = callPackage ../development/python-modules/mysql-connector { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user