nixpkgs/pkgs/development/python-modules/pyodbc/default.nix
2022-12-01 19:30:41 +01:00

41 lines
841 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=";
};
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 ];
};
}