python3Packages.libipld: 3.2.0 -> 3.3.2 (#467354)

This commit is contained in:
Gergő Gutyina
2025-12-24 23:20:17 +00:00
committed by GitHub
@@ -18,19 +18,19 @@
buildPythonPackage rec {
pname = "libipld";
version = "3.2.0";
version = "3.3.2";
format = "pyproject";
disabled = pythonOlder "3.8";
# use pypi, GitHub does not include Cargo.lock
src = fetchPypi {
inherit pname version;
hash = "sha256-ZUIw/9k4Kl7sKKrU4Nzdk/Ed2H2mVpOdvxODB/KGcSA=";
hash = "sha256-foXM2RNhEOY5Q9lSMrGTyJPjacQGJz0jUWDlzEs5yc4=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
hash = "sha256-jVZ3Oml/W6Kb9hYEXazF3/ogFHtl43d1YLd8vZFJDa8=";
hash = "sha256-BtFIX6xCJWBkIOzYEr8XohA1jsXC9rhiaMd87pe101w=";
};
build-system = [