python3Packages.evtx: 0.11.0 -> 0.11.1 (#523426)

This commit is contained in:
Fabian Affolter
2026-05-24 09:07:30 +00:00
committed by GitHub
@@ -8,21 +8,21 @@
libiconv,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "evtx";
version = "0.11.0";
version = "0.11.1";
pyproject = true;
src = fetchFromGitHub {
owner = "omerbenamram";
repo = "pyevtx-rs";
tag = version;
hash = "sha256-06pRNGEUmk2llD5CPbgHiJSHTR8tm/nv0eJL1UKHPEM=";
tag = finalAttrs.version;
hash = "sha256-oF/Hvox294/Vi7TqaJVAboAFreavnlhmqa5rpVsOv6o=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-POEqKRJ/g0bWYs89yrVyD4RFhc7iq+5J67P0rowB2/g=";
inherit (finalAttrs) pname version src;
hash = "sha256-4pDLwM1ylZbqymG+cL7QVByc43p8XJi2MKb/cL3aWak=";
};
nativeBuildInputs = with rustPlatform; [
@@ -39,8 +39,8 @@ buildPythonPackage rec {
meta = {
description = "Bindings for evtx";
homepage = "https://github.com/omerbenamram/pyevtx-rs";
changelog = "https://github.com/omerbenamram/pyevtx-rs/releases/tag/${src.tag}";
changelog = "https://github.com/omerbenamram/pyevtx-rs/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})