python3Packages.pycddl: 0.6.1 -> 0.6.3

Required to build with Rust 1.80.

Link: https://github.com/rust-lang/rust/issues/127343
This commit is contained in:
Alyssa Ross 2024-08-09 19:23:06 +02:00
parent 33c40979a7
commit db9e1d2468

View File

@ -12,14 +12,14 @@
buildPythonPackage rec {
pname = "pycddl";
version = "0.6.1";
version = "0.6.3";
format = "pyproject";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-63fe8UJXEH6t4l7ujV8JDvlGb7q3kL6fHHATFdklzFc=";
hash = "sha256-lVybSr+QvyepdTZfiTjqU0ENu6TT87ZZXIECBA8nMV4=";
};
nativeBuildInputs = with rustPlatform; [
@ -42,7 +42,7 @@ buildPythonPackage rec {
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-ssDEKRd3Y9/10oXBZHCxvlRkl9KMh3pGYbCkM4rXThQ=";
hash = "sha256-VpJ/PLAwwuakwsNAtLDdWGXCxl6jGMTvsEhzIHk6a0g=";
};
nativeCheckInputs = [