Skip to content

Commit

Permalink
python312Packages.rpds-py: 0.20.0 -> 0.22.3 (#363289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt authored Dec 21, 2024
2 parents 9b102bf + 1e359c0 commit 702a071
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions pkgs/development/python-modules/rpds-py/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
cargo,
fetchPypi,
pytestCheckHook,
pythonOlder,
rustc,
rustPlatform,
libiconv,
Expand All @@ -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}" ];
Expand All @@ -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 ];
};
Expand Down

0 comments on commit 702a071

Please sign in to comment.