12 buildPythonPackage rec {
13 pname = "flask-mysqldb";
17 disabled = pythonOlder "3.8";
19 src = fetchFromGitHub {
21 repo = "flask-mysqldb";
23 hash = "sha256-RHAB9WGRzojH6eAOG61QguwF+4LssO9EcFjbWxoOtF4=";
26 nativeBuildInputs = [ setuptools ];
28 propagatedBuildInputs = [
33 pythonImportsCheck = [ "flask_mysqldb" ];
35 nativeCheckInputs = [ pytestCheckHook ];
38 description = "MySQL connection support for Flask";
39 homepage = "https://github.com/alexferl/flask-mysqldb";
40 changelog = "https://github.com/alexferl/flask-mysqldb/releases/tag/v${version}";
41 license = licenses.mit;
42 maintainers = with maintainers; [ netali ];