diff --git a/pkgs/development/python-modules/evtx/default.nix b/pkgs/development/python-modules/evtx/default.nix index 0d89859be9fc..8ef68cf010c4 100644 --- a/pkgs/development/python-modules/evtx/default.nix +++ b/pkgs/development/python-modules/evtx/default.nix @@ -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 ]; }; }