nixpkgs/pkgs/development/python-modules/cx_oracle/default.nix
2020-10-17 01:57:16 +00:00

29 lines
673 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, odpic }:
buildPythonPackage rec {
pname = "cx_Oracle";
version = "8.0.1";
buildInputs = [ odpic ];
src = fetchPypi {
inherit pname version;
sha256 = "f10ada7f821a325c6befdd6fef1cac44ebc830736d0b75dda7b8ac9f851087b2";
};
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 ];
};
}