linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / cx_oracle / default.nix
blobc81443e099086bdc4be75a112c3cbf6e0fc7234e
1 { lib, buildPythonPackage, fetchPypi, odpic }:
3 buildPythonPackage rec {
4   pname = "cx_Oracle";
5   version = "8.1.0";
7   buildInputs = [ odpic ];
9   src = fetchPypi {
10     inherit pname version;
11     sha256 = "e1698c5522ee1355e552b30bfa0a58e6e772475b882c5d69d158bd7e6aed45de";
12   };
14   preConfigure = ''
15     export ODPIC_INC_DIR="${odpic}/include"
16     export ODPIC_LIB_DIR="${odpic}/lib"
17   '';
19   # Check need an Oracle database to run
20   doCheck = false;
22   meta = with lib; {
23     description = "Python interface to Oracle";
24     homepage = "https://oracle.github.io/python-cx_Oracle";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ y0no ];
27   };