python313Packages.trino-python-client: 0.322.0 -> 0.323.0 (#394971)

Changed files
+6 -3
pkgs
development
python-modules
trino-python-client
+6 -3
pkgs/development/python-modules/trino-python-client/default.nix
···
buildPythonPackage rec {
pname = "trino-python-client";
-
version = "0.322.0";
+
version = "0.323.0";
format = "setuptools";
src = fetchFromGitHub {
repo = pname;
owner = "trinodb";
tag = version;
-
hash = "sha256-Hl88Keavyp1QBw67AFbevy/btzNs7UlsKQ93K02YgLM=";
+
hash = "sha256-Nr7p7x5cxxuPv2NUh1uMth97OQ+H2KBlu0SHVJ7Zu1M=";
};
nativeBuildInputs = [ setuptools ];
···
description = "Client for the Trino distributed SQL Engine";
homepage = "https://github.com/trinodb/trino-python-client";
license = licenses.asl20;
-
maintainers = with maintainers; [ cpcloud ];
+
maintainers = with maintainers; [
+
cpcloud
+
flokli
+
];
};
}