python311Packages.weaviate-client 0 -> 1 attrpath: python311Packages.weaviate-client 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/h5x08v9p6d60lizrjs7wlyaalbyypq5j-packages.json.drv building '/nix/store/h5x08v9p6d60lizrjs7wlyaalbyypq5j-packages.json.drv'... Going to be running update for following packages: - python3.11-weaviate-client-3.26.2 Press Enter key to continue... Running update for: - python3.11-weaviate-client-3.26.2: UPDATING ... - python3.11-weaviate-client-3.26.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/weaviate-client/default.nix b/pkgs/development/python-modules/weaviate-client/default.nix index 35a4c5527533..11d87f905a0e 100644 --- a/pkgs/development/python-modules/weaviate-client/default.nix +++ b/pkgs/development/python-modules/weaviate-client/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "weaviate-client"; - version = "3.26.2"; + version = "4.5.4"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-Y+xwg5tkkJgQpkqns+W4UIhGLpPH4u08MuvvtwLzZyM="; + hash = "sha256-/FPcc81T30U8Xm3HWOSaahVJIS1mcN3QEzkhBxIGkvg="; }; postPatch = '' No auto update branch exists Old version 3.26.2" not present in staging derivation file with contents: { lib , authlib , buildPythonPackage , fetchPypi , pythonOlder , setuptools-scm , tqdm , validators }: buildPythonPackage rec { pname = "weaviate-client"; version = "4.5.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-gElboFIwEMiwN6HhpPPT+tcmh0pMiDjq7R8TG2eMMKI="; }; postPatch = '' substituteInPlace setup.cfg \ --replace "validators>=0.18.2,<=0.21.0" "validators>=0.18.2" \ --replace "requests>=2.28.0,<2.29.0" "requests>=2.28.0" ''; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ authlib tqdm validators ]; doCheck = false; pythonImportsCheck = [ "weaviate" ]; meta = with lib; { description = "Python native client for easy interaction with a Weaviate instance"; homepage = "https://github.com/weaviate/weaviate-python-client"; changelog = "https://github.com/weaviate/weaviate-python-client/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ happysalada ]; }; }