diff --git a/pkgs/development/python-modules/rpds-py/default.nix b/pkgs/development/python-modules/rpds-py/default.nix index 9498f3037da24..c411256d1d66d 100644 --- a/pkgs/development/python-modules/rpds-py/default.nix +++ b/pkgs/development/python-modules/rpds-py/default.nix @@ -5,7 +5,6 @@ cargo, fetchPypi, pytestCheckHook, - pythonOlder, rustc, rustPlatform, libiconv, @@ -14,21 +13,19 @@ buildPythonPackage rec { pname = "rpds-py"; - version = "0.20.0"; - format = "pyproject"; - - disabled = pythonOlder "3.8"; + version = "0.22.3"; + pyproject = true; src = fetchPypi { pname = "rpds_py"; inherit version; - hash = "sha256-1yohCCT6z9r4dozy18oloELDAyCzAg3i+gRkCSDU4SE="; + hash = "sha256-4y/uirRdPC222hmlMjvDNiI3yLZTxwGUQUuJL9BqCA0="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-5vbR2EbrAPJ8pb78tj/+r9nOWgQDT5aO/LUQI4kAGjU="; + hash = "sha256-m01OB4CqDowlTAiDQx6tJ7SeP3t+EtS9UZ7Jad6Ccvc="; }; maturinBuildFlags = [ "--interpreter ${python.executable}" ]; @@ -47,8 +44,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "rpds" ]; meta = with lib; { - description = "Python bindings to Rust's persistent data structures (rpds"; - homepage = "https://pypi.org/project/rpds-py/"; + changelog = "https://github.com/crate-py/rpds/releases/tag/v${version}"; + description = "Python bindings to Rust's persistent data structures"; + homepage = "https://github.com/crate-py/rpds"; license = licenses.mit; maintainers = with maintainers; [ fab ]; };