python312Packages.opensearch-py: 2.7.1 -> 2.8.0 (#360318)

This commit is contained in:
Nick Cao 2024-11-30 08:35:16 -05:00 committed by GitHub
commit b4a5d25d3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,14 +30,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "opensearch-py"; pname = "opensearch-py";
version = "2.7.1"; version = "2.8.0";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "opensearch-project"; owner = "opensearch-project";
repo = "opensearch-py"; repo = "opensearch-py";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-GC0waXxHRiXVXjhTGbet3HvDKmUBKzoufu/J4fmrM+k="; hash = "sha256-rPHpGKEIINAEUu2UkJwAM60i0hTzXd1ec6WD50RrgL8=";
}; };
nativeBuildInputs = [ setuptools ]; nativeBuildInputs = [ setuptools ];