1 { lib, buildPythonPackage, fetchPypi, isPyPy, unixODBC }:
3 buildPythonPackage rec {
6 disabled = isPyPy; # use pypypdbc instead
10 sha256 = "0skjpraar6hcwsy82612bpj8nw016ncyvvq88j5syrikxgp5saw5";
13 buildInputs = [ unixODBC ];
15 doCheck = false; # tests require a database server
18 description = "Python ODBC module to connect to almost any database";
19 homepage = "https://github.com/mkleehammer/pyodbc";
20 license = licenses.mit;
21 platforms = platforms.unix;
22 maintainers = with maintainers; [ bjornfor ];