python3Packages.mysql-connector: 8.0.23 -> 8.0.24 and remove myself as maintainer (#119937)

This commit is contained in:
Michael Weiss 2021-04-20 19:39:58 +02:00 committed by GitHub
parent da6777798d
commit 460c08357f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -4,13 +4,13 @@ let
py = python;
in buildPythonPackage rec {
pname = "mysql-connector";
version = "8.0.23";
version = "8.0.24";
src = fetchFromGitHub {
owner = "mysql";
repo = "mysql-connector-python";
rev = version;
sha256 = "sha256-YVtcHbDsW1mTjbCY1YhqgtqWv4keKlLExn2AhlOzNEw=";
sha256 = "1zb5wf65rnpbk0lw31i4piy0bq09hqa62gx7bh241zc5310zccc7";
};
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
@ -20,6 +20,8 @@ in buildPythonPackage rec {
# But the library should be working as expected.
doCheck = false;
pythonImportsCheck = [ "mysql" ];
meta = {
description = "A MySQL driver";
longDescription = ''
@ -28,7 +30,7 @@ in buildPythonPackage rec {
'';
homepage = "https://github.com/mysql/mysql-connector-python";
changelog = "https://raw.githubusercontent.com/mysql/mysql-connector-python/${version}/CHANGES.txt";
license = [ lib.licenses.gpl2 ];
maintainers = with lib.maintainers; [ primeos ];
license = [ lib.licenses.gpl2Only ];
maintainers = with lib.maintainers; [ ];
};
}