python313Packages.aiousbwatcher: init at 1.1.1

Watch for USB devices to be plugged and unplugged!
This commit is contained in:
Martin Weinelt
2025-02-05 19:48:50 +01:00
parent 9d3ee6c935
commit bf9e291b12
2 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
asyncinotify,
pytest-asyncio,
pytest-cov-stub,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aiousbwatcher";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Bluetooth-Devices";
repo = "aiousbwatcher";
tag = "v${version}";
hash = "sha256-M9MUaB3oHELHdtgaWri9nILnVQpF2FJvHrL68jXeOqg=";
};
build-system = [ setuptools ];
dependencies = [ asyncinotify ];
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "aiousbwatcher" ];
meta = {
description = "Watch for USB devices to be plugged and unplugged";
homepage = "https://github.com/Bluetooth-Devices/aiousbwatcher";
changelog = "https://github.com/Bluetooth-Devices/aiousbwatcher/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}

View File

@@ -471,6 +471,8 @@ self: super: with self; {
aiounittest = callPackage ../development/python-modules/aiounittest { };
aiousbwatcher = callPackage ../development/python-modules/aiousbwatcher { };
aiovlc = callPackage ../development/python-modules/aiovlc { };
aiovodafone = callPackage ../development/python-modules/aiovodafone { };