9 buildPythonPackage rec {
10 pname = "mysqlclient";
12 format = "setuptools";
14 nativeBuildInputs = [ pkg-config ];
16 buildInputs = [ libmysqlclient ];
18 # Tests need a MySQL database
22 inherit pname version;
23 hash = "sha256-M7yfs0ZOfXwQser3M2xf+PKj07iLq0MhFq0kkL6zv0E=";
27 description = "Python interface to MySQL";
28 homepage = "https://github.com/PyMySQL/mysqlclient-python";
29 license = licenses.gpl2Only;
30 maintainers = with maintainers; [ y0no ];