python312Packages.elasticsearch8 8.12.0 -> 8.12.1 https://repology.org/project/python:elasticsearch8/versions attrpath: python312Packages.elasticsearch8 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] this derivation will be built: /nix/store/hn8h5kvf1zlap4v7rd8lhsrp6al08m5a-packages.json.drv building '/nix/store/hn8h5kvf1zlap4v7rd8lhsrp6al08m5a-packages.json.drv'... Going to be running update for following packages: - python3.12-elasticsearch8-8.12.0 Press Enter key to continue... Running update for: - python3.12-elasticsearch8-8.12.0: UPDATING ... - python3.12-elasticsearch8-8.12.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/elasticsearch8/default.nix b/pkgs/development/python-modules/elasticsearch8/default.nix index 84376cdbdb19..c83de92d03bf 100644 --- a/pkgs/development/python-modules/elasticsearch8/default.nix +++ b/pkgs/development/python-modules/elasticsearch8/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "elasticsearch8"; - version = "8.12.0"; + version = "8.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-YFsrdsAAelOest7Pw3+Zl3lV+Q/e7YMELmL3TodBKSM="; + hash = "sha256-RuL1zYmEZEaaXb2LEW+BUmo7TcdGHH/5fjgesxXtbls="; }; nativeBuildInputs = [ No auto update branch exists Old version 8.12.0" not present in master derivation file with contents: { lib , aiohttp , buildPythonPackage , elastic-transport , fetchPypi , pythonOlder , requests , urllib3 }: buildPythonPackage rec { pname = "elasticsearch8"; version = "8.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-RuL1zYmEZEaaXb2LEW+BUmo7TcdGHH/5fjgesxXtbls="; }; nativeBuildInputs = [ elastic-transport ]; propagatedBuildInputs = [ requests ]; passthru.optional-dependencies = { async = [ aiohttp ]; }; # Check is disabled because running them destroy the content of the local cluster! # https://github.com/elasticsearch/elasticsearch-py/tree/main/test_elasticsearch doCheck = false; pythonImportsCheck = [ "elasticsearch8" ]; 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; [ fab ]; }; }