{ lib, buildPythonPackage, cryptography, cython, fetchPypi, pythonOlder, setuptools, wheel, }: buildPythonPackage rec { pname = "oracledb"; version = "2.2.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-hGTG8ClfMxja9sLHLIPC3Lw34T+P1E4+Of+GZfRC1rY="; }; build-system = [ cython setuptools wheel ]; dependencies = [ cryptography ]; # Checks need an Oracle database doCheck = false; pythonImportsCheck = [ "oracledb" ]; meta = with lib; { description = "Python driver for Oracle Database"; homepage = "https://oracle.github.io/python-oracledb"; changelog = "https://github.com/oracle/python-oracledb/blob/v${version}/doc/src/release_notes.rst"; license = with licenses; [ asl20 # and or upl ]; maintainers = with maintainers; [ harvidsen ]; }; }