29 lines
673 B
Nix
29 lines
673 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, odpic }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "cx_Oracle";
|
|
version = "7.1.3";
|
|
|
|
buildInputs = [ odpic ];
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "4f26b7418e2796112f8b36338a2f9a7c07dd08df53d857e3478bb53f61dd52e4";
|
|
};
|
|
|
|
preConfigure = ''
|
|
export ODPIC_INC_DIR="${odpic}/include"
|
|
export ODPIC_LIB_DIR="${odpic}/lib"
|
|
'';
|
|
|
|
# Check need an Oracle database to run
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Python interface to Oracle";
|
|
homepage = "https://oracle.github.io/python-cx_Oracle";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ y0no ];
|
|
};
|
|
}
|