##// END OF EJS Templates
dependencies: replaced deprecated mysql-python for mysqlclient which is a maintained lib
super-admin -
r4894:42a84d4c default
parent child Browse files
Show More
@@ -110,7 +110,7 b' self: super: {'
110 ];
110 ];
111 });
111 });
112
112
113 "mysql-python" = super."mysql-python".override (attrs: {
113 "mysqlclient" = super."mysqlclient".override (attrs: {
114 buildInputs = [
114 buildInputs = [
115 pkgs.openssl
115 pkgs.openssl
116 ];
116 ];
@@ -1061,12 +1061,12 b' self: super: {'
1061 license = [ pkgs.lib.licenses.asl20 ];
1061 license = [ pkgs.lib.licenses.asl20 ];
1062 };
1062 };
1063 };
1063 };
1064 "mysql-python" = super.buildPythonPackage {
1064 "mysqlclient" = super.buildPythonPackage {
1065 name = "mysql-python-1.2.5";
1065 name = "mysqlclient-1.4.6";
1066 doCheck = false;
1066 doCheck = false;
1067 src = fetchurl {
1067 src = fetchurl {
1068 url = "https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip";
1068 url = "https://files.pythonhosted.org/packages/d0/97/7326248ac8d5049968bf4ec708a5d3d4806e412a42e74160d7f266a3e03a/mysqlclient-1.4.6.tar.gz";
1069 sha256 = "0x0c2jg0bb3pp84njaqiic050qkyd7ymwhfvhipnimg58yv40441";
1069 sha256 = "f3fdaa9a38752a3b214a6fe79d7cae3653731a53e577821f9187e67cbecb2e16";
1070 };
1070 };
1071 meta = {
1071 meta = {
1072 license = [ pkgs.lib.licenses.gpl1 ];
1072 license = [ pkgs.lib.licenses.gpl1 ];
@@ -1969,7 +1969,7 b' self: super: {'
1969 self."zope.deprecation"
1969 self."zope.deprecation"
1970 self."zope.event"
1970 self."zope.event"
1971 self."zope.interface"
1971 self."zope.interface"
1972 self."mysql-python"
1972 self."mysqlclient"
1973 self."pymysql"
1973 self."pymysql"
1974 self."pysqlite"
1974 self."pysqlite"
1975 self."psycopg2"
1975 self."psycopg2"
@@ -81,7 +81,7 b' zope.event==4.4.0'
81 zope.interface==4.6.0
81 zope.interface==4.6.0
82
82
83 # DB drivers
83 # DB drivers
84 mysql-python==1.2.5
84 mysqlclient==1.4.6
85 pymysql==0.8.1
85 pymysql==0.8.1
86 pysqlite==2.8.3
86 pysqlite==2.8.3
87 psycopg2==2.8.4
87 psycopg2==2.8.4
General Comments 0
You need to be logged in to leave comments. Login now