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

23 lines
616 B
Nix
Raw Normal View History

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