Martin Weinelt
2024-12-21 10:14:32 +01:00
parent 85bb453f84
commit 1e359c03f0
@@ -5,7 +5,6 @@
cargo,
fetchPypi,
pytestCheckHook,
pythonOlder,
rustc,
rustPlatform,
libiconv,
@@ -13,21 +12,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=";
};
nativeBuildInputs = [
@@ -44,8 +41,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 ];
};