mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
Merge pull request #135174 from r-ryantm/auto-update/python3.8-pyodbc
python38Packages.pyodbc: 4.0.31 -> 4.0.32
This commit is contained in:
commit
0a1c41dd69
|
@ -2,18 +2,20 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "pyodbc";
|
||||
version = "4.0.31";
|
||||
disabled = isPyPy; # use pypypdbc instead
|
||||
version = "4.0.32";
|
||||
disabled = isPyPy; # use pypypdbc instead
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "89256e79d23415887cacf0a821f9f94baa5d833080521d456687d5e88c40c226";
|
||||
sha256 = "9be5f0c3590655e1968488410fe3528bb8023d527e7ccec1f663d64245071a6b";
|
||||
};
|
||||
|
||||
buildInputs = [ unixODBC ];
|
||||
|
||||
doCheck = false; # tests require a database server
|
||||
|
||||
pythonImportsCheck = [ "pyodbc" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python ODBC module to connect to almost any database";
|
||||
homepage = "https://github.com/mkleehammer/pyodbc";
|
||||
|
|
Loading…
Reference in a new issue