python3Packages.mysql-connector: 8.0.19 -> 8.0.20
This commit is contained in:
parent
19cb4832c2
commit
0162890ce0
|
@ -1,22 +1,16 @@
|
||||||
{ lib, buildPythonPackage, fetchFromGitHub, python, protobuf3_6 }:
|
{ lib, buildPythonPackage, fetchFromGitHub, python }:
|
||||||
|
|
||||||
let
|
let
|
||||||
py = python.override {
|
py = python;
|
||||||
packageOverrides = self: super: {
|
|
||||||
protobuf = super.protobuf.override {
|
|
||||||
protobuf = protobuf3_6;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in buildPythonPackage rec {
|
in buildPythonPackage rec {
|
||||||
pname = "mysql-connector";
|
pname = "mysql-connector";
|
||||||
version = "8.0.19";
|
version = "8.0.20";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mysql";
|
owner = "mysql";
|
||||||
repo = "mysql-connector-python";
|
repo = "mysql-connector-python";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1jscmc5s7mwx43gvxjlqc30ylp5jjpmkqx7s3b9nllbh926p3ixg";
|
sha256 = "1pm98mjbkhwawhni98cjhp0gg3mim75i0sdby77vzrlcrxajxkbw";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
|
propagatedBuildInputs = with py.pkgs; [ protobuf dnspython ];
|
||||||
|
@ -33,6 +27,7 @@ in buildPythonPackage rec {
|
||||||
implements the DB API v2.0 specification.
|
implements the DB API v2.0 specification.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/mysql/mysql-connector-python";
|
homepage = "https://github.com/mysql/mysql-connector-python";
|
||||||
|
changelog = "https://raw.githubusercontent.com/mysql/mysql-connector-python/${version}/CHANGES.txt";
|
||||||
license = [ lib.licenses.gpl2 ];
|
license = [ lib.licenses.gpl2 ];
|
||||||
maintainers = with lib.maintainers; [ primeos ];
|
maintainers = with lib.maintainers; [ primeos ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue