Merge pull request #218332 from fabaff/evtx-bump

python310Packages.evtx: 0.8.1 -> 0.8.2
This commit is contained in:
Nick Cao 2023-02-26 09:37:16 +08:00 committed by GitHub
commit 0fbe174606
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,22 +9,22 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "evtx"; pname = "evtx";
version = "0.8.1"; version = "0.8.2";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "omerbenamram"; owner = "omerbenamram";
repo = "pyevtx-rs"; repo = "pyevtx-rs";
rev = version; rev = "refs/tags/${version}";
sha256 = "sha256-MSQYp/qkntFcnGqGhJ+0i4eMGzcDJcSZ44qFARMYM2I="; hash = "sha256-t//oNvD+7wnv5KkriKBX4xgGS8pQpZgCsKxAEXsj0X8=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
sha256 = "sha256-kzv2ppRjkmXgMxJviBwRVXMiGWBlhBqLXEmmRvwlw98="; hash = "sha256-DPEL36cYNV5v4iW3+Fg1eEeuBuK9S7Qe78xOzZs8aJw=";
}; };
nativeBuildInputs = with rustPlatform; [ nativeBuildInputs = with rustPlatform; [
@ -41,10 +41,11 @@ buildPythonPackage rec {
]; ];
meta = with lib; { meta = with lib; {
broken = stdenv.isDarwin;
description = "Bindings for evtx"; description = "Bindings for evtx";
homepage = "https://github.com/omerbenamram/pyevtx-rs"; homepage = "https://github.com/omerbenamram/pyevtx-rs";
changelog = "https://github.com/omerbenamram/pyevtx-rs/releases/tag/${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
broken = stdenv.isDarwin;
}; };
} }