Merge pull request #280282 from r-ryantm/auto-update/python310Packages.zcbor

python310Packages.zcbor: 0.7.0 -> 0.8.0
This commit is contained in:
Fabian Affolter 2024-01-12 09:40:35 +01:00 committed by GitHub
commit d80ec25ff6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "zcbor";
version = "0.7.0";
version = "0.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-0mGp7Hnq8ZNEUx/9eQ6UD9/cOuLl6S5Aif1qNh1+jYA=";
hash = "sha256-47HwITfFcHNze3tt4vJxHB4BQ7oyl17DM8IV0WomM5Q=";
};
nativeBuildInputs = [
@ -36,6 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "A low footprint CBOR library in the C language (C++ compatible), tailored for use in microcontrollers";
homepage = "https://pypi.org/project/zcbor/";
changelog = "https://github.com/NordicSemiconductor/zcbor/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ otavio ];
};