2018-06-04 20:41:45 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi, odpic }:
|
2018-02-06 10:33:55 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cx_Oracle";
|
2020-10-17 02:57:16 +01:00
|
|
|
version = "8.0.1";
|
2018-02-06 10:33:55 +00:00
|
|
|
|
2018-06-04 20:41:45 +01:00
|
|
|
buildInputs = [ odpic ];
|
2018-02-06 10:33:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-10-17 02:57:16 +01:00
|
|
|
sha256 = "f10ada7f821a325c6befdd6fef1cac44ebc830736d0b75dda7b8ac9f851087b2";
|
2018-02-06 10:33:55 +00:00
|
|
|
};
|
|
|
|
|
2018-06-04 20:41:45 +01:00
|
|
|
preConfigure = ''
|
|
|
|
export ODPIC_INC_DIR="${odpic}/include"
|
|
|
|
export ODPIC_LIB_DIR="${odpic}/lib"
|
2018-05-17 17:43:25 +01:00
|
|
|
'';
|
|
|
|
|
2018-05-17 17:40:48 +01:00
|
|
|
# Check need an Oracle database to run
|
2018-02-06 10:33:55 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Python interface to Oracle";
|
|
|
|
homepage = "https://oracle.github.io/python-cx_Oracle";
|
2019-06-10 11:38:00 +01:00
|
|
|
license = licenses.bsd3;
|
2018-02-06 10:33:55 +00:00
|
|
|
maintainers = with maintainers; [ y0no ];
|
|
|
|
};
|
|
|
|
}
|