From b52f0251d5a6bbecdef0fd72f8c8dc1ef6eeeb8e Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Wed, 24 Jan 2024 15:03:30 -0500 Subject: [PATCH] Update nix packaging. --- nix/pycddl.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/pycddl.nix b/nix/pycddl.nix index 4c68830d4..a8c0799d1 100644 --- a/nix/pycddl.nix +++ b/nix/pycddl.nix @@ -30,12 +30,12 @@ { lib, fetchPypi, python, buildPythonPackage, rustPlatform }: buildPythonPackage rec { pname = "pycddl"; - version = "0.4.0"; + version = "0.6.0"; format = "pyproject"; src = fetchPypi { inherit pname version; - sha256 = "sha256-w0CGbPeiXyS74HqZXyiXhvaAMUaIj5onwjl9gWKAjqY="; + sha256 = "sha256-kmXXJAHkP4Wltp01Os5DPlygEI7nxd0FdaFqdD43X3g="; }; # Without this, when building for PyPy, `maturin build` seems to fail to @@ -52,6 +52,6 @@ buildPythonPackage rec { cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-g96eeaqN9taPED4u+UKUcoitf5aTGFrW2/TOHoHEVHs="; + hash = "sha256-PjAcAf7T03hKmBhDlXJdkwCkiGNfzc1ajukhf+tFpMo="; }; }