{ stdenv, buildPythonPackage, fetchPypi, isPyPy, libiodbc }: buildPythonPackage rec { pname = "pyodbc"; version = "4.0.24"; disabled = isPyPy; # use pypypdbc instead src = fetchPypi { inherit pname version; sha256 = "4326abb737dec36156998d52324921673d30f575e1e0998f0c5edd7de20e61d4"; }; buildInputs = [ libiodbc ]; meta = with stdenv.lib; { description = "Python ODBC module to connect to almost any database"; homepage = "https://github.com/mkleehammer/pyodbc"; license = licenses.mit; platforms = platforms.linux; maintainers = with maintainers; [ bjornfor ]; }; }