depot/third_party/nixpkgs/pkgs/development/python-modules/oracledb/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
911 B
Nix

{
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 ];
};
}