nixpkgs/pkgs/development/python-modules/pyodbc/default.nix
Robert Schütz c114f447ec python310Packages.pyodbc: add unixODBC to nativeBuildInputs
Its executable odbc_config is called in setup.py.
2023-02-06 07:20:44 +01:00

45 lines
903 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, pythonOlder
, unixODBC
}:
buildPythonPackage rec {
pname = "pyodbc";
version = "4.0.35";
format = "setuptools";
disabled = pythonOlder "3.7" || isPyPy; # use pypypdbc instead
src = fetchPypi {
inherit pname version;
hash = "sha256-krmvSOi5KEVbyLlL89oFdR+uwJMqEe7iN8GJxtQ55cg=";
};
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 ];
};
}