{ lib , buildPythonPackage , fetchPypi , isPyPy , pythonOlder , unixODBC }: buildPythonPackage rec { pname = "pyodbc"; version = "4.0.39"; format = "setuptools"; disabled = pythonOlder "3.7" || isPyPy; # use pypypdbc instead src = fetchPypi { inherit pname version; hash = "sha256-5Si7cN1tYpnuQphokl3whm4+kZx3K57/ecjheSDY8RY="; }; nativeBuildInputs = [ unixODBC # for odbc_config ]; buildInputs = [ unixODBC ]; # Tests require a database server doCheck = false; pythonImportsCheck = [ "pyodbc" ]; meta = with lib; { description = "Python ODBC module to connect to almost any database"; homepage = "https://github.com/mkleehammer/pyodbc"; changelog = "https://github.com/mkleehammer/pyodbc/releases/tag/${version}"; license = licenses.mit; platforms = platforms.unix; maintainers = with maintainers; [ bjornfor ]; }; }