python312Packages.pyjvcprojector: init at 1.1.2

This commit is contained in:
Robert Schütz
2025-01-03 10:03:22 -08:00
parent aaadb7f179
commit a44a3bc54a
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{
aiodns,
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pyjvcprojector";
version = "1.1.2";
pyproject = true;
src = fetchFromGitHub {
owner = "SteveEasley";
repo = "pyjvcprojector";
tag = "v${version}";
hash = "sha256-ow9pCigbQpxLibIq1hsRifXuzJfbWnqpWmnkM5lC3I4=";
};
build-system = [ setuptools ];
dependencies = [
aiodns
];
pythonImportsCheck = [ "jvcprojector" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
meta = {
changelog = "https://github.com/SteveEasley/pyjvcprojector/releases/tag/${src.tag}";
description = "Python library for controlling a JVC Projector over a network connection";
homepage = "https://github.com/SteveEasley/pyjvcprojector";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -11882,6 +11882,8 @@ self: super: with self; {
pyjsparser = callPackage ../development/python-modules/pyjsparser { };
pyjvcprojector = callPackage ../development/python-modules/pyjvcprojector { };
pyjwkest = callPackage ../development/python-modules/pyjwkest { };
pyjwt = callPackage ../development/python-modules/pyjwt { };