python312Packages.python-linkplay: init at 0.0.6

This commit is contained in:
Robert Schütz
2024-08-09 14:47:04 +02:00
committed by Martin Weinelt
parent dffa4ad728
commit c417beac46
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
aiohttp,
async-timeout,
async-upnp-client,
buildPythonPackage,
fetchPypi,
lib,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "python-linkplay";
version = "0.0.6";
pyproject = true;
src = fetchPypi {
pname = "python_linkplay";
inherit version;
hash = "sha256-mChlhJt2p77KWXWNZztrEA8Z2BmYkPLYPdv9Gw7p5/I=";
};
build-system = [ setuptools ];
dependencies = [
aiohttp
async-timeout
async-upnp-client
];
pythonImportsCheck = [ "linkplay" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
# no tests on PyPI, no tags on GitHub
# https://github.com/Velleman/python-linkplay/issues/23
doCheck = false;
meta = {
description = "Python Library for Seamless LinkPlay Device Control";
homepage = "https://github.com/Velleman/python-linkplay";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -10461,6 +10461,8 @@ self: super: with self; {
python-keystoneclient = callPackage ../development/python-modules/python-keystoneclient { };
python-linkplay = callPackage ../development/python-modules/python-linkplay { };
python-lsp-black = callPackage ../development/python-modules/python-lsp-black { };
python-mbedtls = callPackage ../development/python-modules/python-mbedtls { };