fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
35 lines
731 B
Nix
35 lines
731 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
libmysqlclient,
|
|
lib,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mariadb";
|
|
version = "1.1.4";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-c6CsvSrOOB7BvPxhztenmlGeZsAsJOEq5tJ7qgNxeHY=";
|
|
extension = "zip";
|
|
};
|
|
|
|
nativeBuildInputs = [ libmysqlclient ];
|
|
|
|
# Requires a running MariaDB instance
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mariadb" ];
|
|
|
|
meta = with lib; {
|
|
description = "MariaDB Connector/Python";
|
|
homepage = "https://github.com/mariadb-corporation/mariadb-connector-python";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ vanilla ];
|
|
};
|
|
}
|