python312Packages.py-madvr2: init at 1.6.29

This commit is contained in:
Robert Schütz 2024-08-08 14:34:01 -07:00 committed by Martin Weinelt
parent b2a8cc8d02
commit e5d572be2b
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{
buildPythonPackage,
fetchFromGitHub,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "py-madvr2";
version = "1.6.29";
pyproject = true;
src = fetchFromGitHub {
owner = "iloveicedgreentea";
repo = "py-madvr";
rev = "refs/tags/${version}";
hash = "sha256-ibgmUpHSmOr5glSZPIJXTBDlEnQoWtmJzmEGsggQxnk=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "madvr" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
# https://github.com/iloveicedgreentea/py-madvr/issues/12
doCheck = false;
meta = {
changelog = "https://github.com/iloveicedgreentea/py-madvr/releases/tag/${version}";
description = "Control MadVR Envy over IP";
homepage = "https://github.com/iloveicedgreentea/py-madvr";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -10922,6 +10922,8 @@ self: super: with self; {
py-dormakaba-dkey = callPackage ../development/python-modules/py-dormakaba-dkey { };
py-madvr2 = callPackage ../development/python-modules/py-madvr2 { };
py-nightscout = callPackage ../development/python-modules/py-nightscout { };
py-partiql-parser = callPackage ../development/python-modules/py-partiql-parser { };