fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
33 lines
630 B
Nix
33 lines
630 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
cryptography,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymysql";
|
|
version = "1.1.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "PyMySQL";
|
|
inherit version;
|
|
hash = "sha256-TxOn34vzalHoHdnzYF/t5FpIeP4C+SNjSf2Co/BhL5Y=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ cryptography ];
|
|
|
|
# Wants to connect to MySQL
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Pure Python MySQL Client";
|
|
homepage = "https://github.com/PyMySQL/PyMySQL";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.kalbasit ];
|
|
};
|
|
}
|