nixpkgs/pkgs/development/python-modules/pyodbc/default.nix

25 lines
670 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPyPy, unixODBC }:
buildPythonPackage rec {
pname = "pyodbc";
2018-08-25 05:49:02 +00:00
version = "4.0.24";
disabled = isPyPy; # use pypypdbc instead
src = fetchPypi {
inherit pname version;
2018-08-25 05:49:02 +00:00
sha256 = "4326abb737dec36156998d52324921673d30f575e1e0998f0c5edd7de20e61d4";
};
buildInputs = [ unixODBC ];
doCheck = false; # tests require a database server
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 ];
};
}