diff --git a/pkgs/development/python-modules/loro/default.nix b/pkgs/development/python-modules/loro/default.nix index ea6bb82e50cb..d44bac2fc91b 100644 --- a/pkgs/development/python-modules/loro/default.nix +++ b/pkgs/development/python-modules/loro/default.nix @@ -8,18 +8,17 @@ buildPythonPackage rec { pname = "loro"; - version = "1.5.4"; + version = "1.6.0"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-vC1SLkwCkiytZe9d9t1OH+Vd360657XxdU81bM9C9jk="; + hash = "sha256-9UO4XHf3Nm3yFi3hwA490sLHUXG36WcM/8C2rFYdcpM="; }; cargoDeps = rustPlatform.fetchCargoVendor { - inherit src; - name = "${pname}-${version}"; - hash = "sha256-cjIHU2aMxkYMoulePmxFhuZrqMbnOkEL+Ar75+KCVFw="; + inherit pname version src; + hash = "sha256-sTJ2jA/TLoVp7UTC2YMKzuJi1SxldG8gj3YGPbVco5s="; }; build-system = [ @@ -31,12 +30,6 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = [ - # Upstream test has hardcoded version and is rarely updated. - # See https://github.com/loro-dev/loro-py/issues/19 - "test_version" - ]; - meta = { description = "Data collaborative and version-controlled JSON with CRDTs"; homepage = "https://github.com/loro-dev/loro-py";