1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-19 16:09:19 +03:00
nixpkgs/pkgs/development/python-modules/mysqlclient/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
647 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, libmysqlclient
, pkg-config
}:
buildPythonPackage rec {
pname = "mysqlclient";
version = "2.2.4";
format = "setuptools";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libmysqlclient
];
# Tests need a MySQL database
doCheck = false;
src = fetchPypi {
inherit pname version;
hash = "sha256-M7yfs0ZOfXwQser3M2xf+PKj07iLq0MhFq0kkL6zv0E=";
};
meta = with lib; {
description = "Python interface to MySQL";
homepage = "https://github.com/PyMySQL/mysqlclient-python";
2022-09-29 10:54:21 +02:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ y0no ];
};
}