python310Packages.elasticsearch 8.9.0 -> 8.11.1 https://repology.org/project/python:elasticsearch/versions attrpath: python310Packages.elasticsearch Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] Going to be running update for following packages: - python3.10-elasticsearch-8.9.0 Press Enter key to continue... Running update for: - python3.10-elasticsearch-8.9.0: UPDATING ... - python3.10-elasticsearch-8.9.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix index e93388a1bbcc..2d6f3175bb2d 100644 --- a/pkgs/development/python-modules/elasticsearch/default.nix +++ b/pkgs/development/python-modules/elasticsearch/default.nix @@ -7,12 +7,12 @@ buildPythonPackage (rec { pname = "elasticsearch"; - version = "8.9.0"; + version = "8.11.1"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "sha256-0zZ/wBPgT8eq00mm3p+tHuBPttYnsOeJaqUFwS/eXgQ="; + sha256 = "sha256-NgtyEyTOS8fVVK+4rL9JQjcOc8XvjE2tX1ujuypw7q4="; }; # Check is disabled because running them destroy the content of the local cluster! No auto update branch exists Old version 8.9.0" not present in staging derivation file with contents: { lib , aiohttp , buildPythonPackage , certifi , elastic-transport , fetchPypi , pythonOlder , requests , urllib3 }: buildPythonPackage rec { pname = "elasticsearch"; version = "8.11.0"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; sha256 = "sha256-nghBO+r/Oka8EMbFcGmoRwTfaqqTCFxzffB/WKKBG3g="; }; nativeBuildInputs = [ elastic-transport ]; propagatedBuildInputs = [ urllib3 certifi ]; passthru.optional-dependencies = { requests = [ requests ]; async = [ aiohttp ]; }; pythonImportsCheck = [ "elasticsearch" ]; # Check is disabled because running them destroy the content of the local cluster! # https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch doCheck = false; meta = with lib; { description = "Official low-level client for Elasticsearch"; homepage = "https://github.com/elasticsearch/elasticsearch-py"; changelog = "https://github.com/elastic/elasticsearch-py/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ desiderius ]; }; }