python3Packages.vegehub: init at 0.1.24

This commit is contained in:
Robert Schütz
2025-07-18 14:17:58 -07:00
parent 6c6254bd01
commit 5f0f1d5459
2 changed files with 50 additions and 0 deletions
@@ -0,0 +1,48 @@
{
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
lib,
poetry-core,
pytest-asyncio,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "vegehub";
version = "0.1.24";
pyproject = true;
src = fetchFromGitHub {
owner = "Thulrus";
repo = "VegeHubPyPiLib";
tag = "V${version}";
hash = "sha256-W/5kvertNC7w2IS/N5k06cDyNFgel2s4/znR+Lz5RJU=";
};
postPatch = ''
rm -r dist
'';
build-system = [ poetry-core ];
dependencies = [
aiohttp
];
pythonImportsCheck = [ "vegehub" ];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
];
meta = {
description = "Basic package for simplifying interactions with the Vegetronix VegeHub";
homepage = "https://github.com/Thulrus/VegeHubPyPiLib";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};
}
+2
View File
@@ -19171,6 +19171,8 @@ self: super: with self; {
vega-datasets = callPackage ../development/python-modules/vega-datasets { };
vegehub = callPackage ../development/python-modules/vegehub { };
vehicle = callPackage ../development/python-modules/vehicle { };
velbus-aio = callPackage ../development/python-modules/velbus-aio { };