diff --git a/pkgs/development/python-modules/pylance/default.nix b/pkgs/development/python-modules/pylance/default.nix index 9df9cc6b259a..c75bdcb643b1 100644 --- a/pkgs/development/python-modules/pylance/default.nix +++ b/pkgs/development/python-modules/pylance/default.nix @@ -27,21 +27,18 @@ polars, pytestCheckHook, tqdm, - - # passthru - nix-update-script, }: buildPythonPackage rec { pname = "pylance"; - version = "0.23.2"; + version = "0.24.0"; pyproject = true; src = fetchFromGitHub { owner = "lancedb"; repo = "lance"; tag = "v${version}"; - hash = "sha256-HVT/39zhcviVkF6dKM+ZIy7vGW6tOWEBUXTEIuFaVno="; + hash = "sha256-tzz+Zww6/owkcFhHBt8+2cvouCeqdspuv6Gy7HpZTP0="; }; sourceRoot = "${src.name}/python"; @@ -53,7 +50,7 @@ buildPythonPackage rec { src sourceRoot ; - hash = "sha256-H5Z6YgaSfRrRPGZVbgNWxcFboS1I65p+08c1VgaL+lE="; + hash = "sha256-7GN4iAQMvqZkK5kjBMrNa8Q6fETW0HDZklSQGye+Huc="; }; nativeBuildInputs = [ @@ -122,8 +119,6 @@ buildPythonPackage rec { "test_iter_over_dataset_fixed_size_lists" ]; - passthru.updateScript = nix-update-script { }; - meta = { description = "Python wrapper for Lance columnar format"; homepage = "https://github.com/lancedb/lance";