python311Packages.zcbor 0 -> 1 attrpath: python311Packages.zcbor Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/19mckdx5v41y21w54qqwg8641vd6h3pm-packages.json.drv building '/nix/store/19mckdx5v41y21w54qqwg8641vd6h3pm-packages.json.drv'... Going to be running update for following packages: - python3.11-zcbor-0.8.0 Press Enter key to continue... Running update for: - python3.11-zcbor-0.8.0: UPDATING ... - python3.11-zcbor-0.8.0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/zcbor/default.nix b/pkgs/development/python-modules/zcbor/default.nix index 1525a7610c73..9bce9e925c1d 100644 --- a/pkgs/development/python-modules/zcbor/default.nix +++ b/pkgs/development/python-modules/zcbor/default.nix @@ -13,12 +13,12 @@ buildPythonPackage rec { pname = "zcbor"; - version = "0.8.0"; + version = "0.8.1"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-47HwITfFcHNze3tt4vJxHB4BQ7oyl17DM8IV0WomM5Q="; + hash = "sha256-U3Y/r3tBhzK6bGnMxdqKzS7bLHyAzgpGZ5PVK9pw7Pk="; }; nativeBuildInputs = [ No auto update branch exists Old version 0.8.0" not present in master derivation file with contents: { lib , buildPythonPackage , fetchPypi # build dependencies , setuptools # dependencies , cbor2 , pyyaml , regex }: buildPythonPackage rec { pname = "zcbor"; version = "0.8.1"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-U3Y/r3tBhzK6bGnMxdqKzS7bLHyAzgpGZ5PVK9pw7Pk="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ cbor2 pyyaml regex ]; pythonImportsCheck = [ "zcbor" ]; 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 ]; }; }