Unverified Commit 9a88d865 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #226258 from cpcloud/nixpkgs-trino-python-client

python3Packages.trino-python-client: init at 0.322.0
parents c8fea324 0e72f5fa
Loading
Loading
Loading
Loading
+81 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
  # build
, setuptools
  # required
, pytz
, requests
, tzlocal
  # optional
, requests-kerberos
, sqlalchemy
, keyring
  # tests
, pytestCheckHook
, httpretty
}:

buildPythonPackage rec {
  pname = "trino-python-client";
  version = "0.322.0";
  format = "setuptools";

  src = fetchFromGitHub {
    repo = pname;
    owner = "trinodb";
    rev = "refs/tags/${version}";
    hash = "sha256-Hl88Keavyp1QBw67AFbevy/btzNs7UlsKQ93K02YgLM=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  propagatedBuildInputs = [
    pytz
    requests
    tzlocal
  ];

  passthru.optional-dependencies = lib.fix (self: {
    kerberos = [
      requests-kerberos
    ];
    sqlalchemy = [
      sqlalchemy
    ];
    external-authentication-token-cache = [
      keyring
    ];
    all = self.kerberos ++ self.sqlalchemy;
  });

  nativeCheckInputs = [
    httpretty
    pytestCheckHook
  ] ++ passthru.optional-dependencies.all;

  pythonImportsCheck = [
    "trino"
  ];

  disabledTestPaths = [
    # these all require a running trino instance
    "tests/integration/test_types_integration.py"
    "tests/integration/test_dbapi_integration.py"
    "tests/integration/test_sqlalchemy_integration.py"
  ];

  pytestFlagsArray = [
    "-k 'not auth'"
  ];

  meta = with lib; {
    changelog = "https://github.com/trinodb/trino-python-client/blob/${version}/CHANGES.md";
    description = "Client for the Trino distributed SQL Engine";
    homepage = "https://github.com/trinodb/trino-python-client";
    license = licenses.asl20;
    maintainers = with maintainers; [ cpcloud ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12003,6 +12003,8 @@ self: super: with self; {

  trimesh = callPackage ../development/python-modules/trimesh { };

  trino-python-client = callPackage ../development/python-modules/trino-python-client { };

  trio = callPackage ../development/python-modules/trio {
    inherit (pkgs) coreutils;
  };