python310Packages.evtx: init at 0.7.3

This commit is contained in:
Fabian Affolter 2022-05-10 23:45:14 +02:00
parent 683097028d
commit cc5ce889fd
2 changed files with 50 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
, rustPlatform
}:
buildPythonPackage rec {
pname = "evtx";
version = "0.7.3";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "omerbenamram";
repo = "pyevtx-rs";
rev = version;
sha256 = "sha256-59iEmgF1m+Yr5k4oxZGqMs5oMZxToUFYuwQDeLEQ2jY=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
sha256 = "sha256-Q2SpJohLSQCMYmx1ZMWZ7a/NC0lPsHkwxom00qVooNM=";
};
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"evtx"
];
meta = with lib; {
description = "Bindings for evtx";
homepage = "https://github.com/omerbenamram/pyevtx-rs";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -2763,6 +2763,8 @@ in {
evohome-async = callPackage ../development/python-modules/evohome-async { };
evtx = callPackage ../development/python-modules/evtx { };
ewmh = callPackage ../development/python-modules/ewmh { };
exdown = callPackage ../development/python-modules/exdown { };