Unverified Commit b776ec95 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.evtx: 0.8.9 -> 0.11.0 (#476796)

parents 4d05a820 7373830f
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
@@ -4,28 +4,25 @@
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  rustPlatform,
  libiconv,
}:

buildPythonPackage rec {
  pname = "evtx";
  version = "0.8.9";
  format = "pyproject";

  disabled = pythonOlder "3.7";
  version = "0.11.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "omerbenamram";
    repo = "pyevtx-rs";
    tag = version;
    hash = "sha256-rxE3Srm+5L9r6uNIeOPBnpQAbS89WCel/U7xgLc2ZDU=";
    hash = "sha256-06pRNGEUmk2llD5CPbgHiJSHTR8tm/nv0eJL1UKHPEM=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit pname version src;
    hash = "sha256-IqV4BsLE+5Dk3ey4M+h5wxR/SToZTLf8vU0BlWU5e8c=";
    hash = "sha256-POEqKRJ/g0bWYs89yrVyD4RFhc7iq+5J67P0rowB2/g=";
  };

  nativeBuildInputs = with rustPlatform; [
@@ -42,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/${version}";
    license = with lib.licenses; [ mit ];
    changelog = "https://github.com/omerbenamram/pyevtx-rs/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}