2020-02-24 14:43:05 +01:00
|
|
|
{ lib, buildPythonPackage, fetchFromGitHub, python, protobuf3_6 }:
|
2018-02-21 18:49:10 +01:00
|
|
|
|
2020-01-14 21:14:49 +01:00
|
|
|
let
|
2020-02-24 14:43:05 +01:00
|
|
|
py = python.override {
|
2020-01-14 21:14:49 +01:00
|
|
|
packageOverrides = self: super: {
|
|
|
|
protobuf = super.protobuf.override {
|
|
|
|
protobuf = protobuf3_6;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
in buildPythonPackage rec {
|
2018-02-21 18:49:10 +01:00
|
|
|
pname = "mysql-connector";
|
2020-01-14 21:14:49 +01:00
|
|
|
version = "8.0.19";
|
2018-02-21 18:49:10 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mysql";
|
|
|
|
repo = "mysql-connector-python";
|
|
|
|
rev = version;
|
2020-01-14 21:14:49 +01:00
|
|
|
sha256 = "1jscmc5s7mwx43gvxjlqc30ylp5jjpmkqx7s3b9nllbh926p3ixg";
|
2018-02-21 18:49:10 +01:00
|
|
|
};
|
|
|
|
|
2020-02-24 14:43:05 +01:00
|
|
|
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
|
2018-02-21 18:49:10 +01:00
|
|
|
|
2018-04-19 22:42:45 +02:00
|
|
|
# Tests are failing (TODO: unknown reason)
|
|
|
|
# TypeError: __init__() missing 1 required positional argument: 'string'
|
|
|
|
# But the library should be working as expected.
|
2018-02-21 18:49:10 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A MySQL driver";
|
|
|
|
longDescription = ''
|
|
|
|
A MySQL driver that does not depend on MySQL C client libraries and
|
|
|
|
implements the DB API v2.0 specification.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/mysql/mysql-connector-python";
|
2018-02-21 18:49:10 +01:00
|
|
|
license = [ lib.licenses.gpl2 ];
|
|
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
}
|