python3Packages.libipld: 3.0.1 -> 3.1.1

This commit is contained in:
R. Ryantm 2025-06-26 02:56:30 +00:00
parent eddb0f04e8
commit 53c64cc8c0

View File

@ -18,19 +18,19 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "libipld"; pname = "libipld";
version = "3.0.1"; version = "3.1.1";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
# use pypi, GitHub does not include Cargo.lock # use pypi, GitHub does not include Cargo.lock
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-KXB1LecOX9ysRkaQDN76oNygjbm11ZxAtUltmeO/+mQ="; hash = "sha256-S5qdoOpdhI6foSxwACdhmh437MHaOdvRQkwOkGLynkQ=";
}; };
cargoDeps = rustPlatform.fetchCargoVendor { cargoDeps = rustPlatform.fetchCargoVendor {
inherit src; inherit src;
hash = "sha256-V/UGTO+VEBtv5gwKR/fZmmhbeYILsIVc7Mq/Rl6E4Dw="; hash = "sha256-LMd1M2gCK0i3TJPnUIY/2pskt9Rm/yki4uDX5uQGi8Q=";
}; };
build-system = [ build-system = [