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

29 lines
661 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, odpic }:
2018-02-06 10:33:55 +00:00
buildPythonPackage rec {
pname = "cx_Oracle";
2019-08-21 16:00:47 +01:00
version = "7.2.2";
2018-02-06 10:33:55 +00:00
buildInputs = [ odpic ];
2018-02-06 10:33:55 +00:00
src = fetchPypi {
inherit pname version;
2019-08-21 16:00:47 +01:00
sha256 = "1kp6fgyln0jkdbjm20h6rhybsmvqjj847frhsndyfvkf38m32ss0";
2018-02-06 10:33:55 +00:00
};
preConfigure = ''
export ODPIC_INC_DIR="${odpic}/include"
export ODPIC_LIB_DIR="${odpic}/lib"
'';
# 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 ];
};
}