python312Packages.lektricowifi: init at 0.0.43

This commit is contained in:
Robert Schütz 2024-10-03 16:49:31 -07:00
parent f645888bb5
commit 31bcaf75e8
2 changed files with 60 additions and 0 deletions

View File

@ -0,0 +1,58 @@
{
async-timeout,
buildPythonPackage,
fetchFromGitHub,
httpx,
lib,
pydantic,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "lektricowifi";
version = "0.0.43";
pyproject = true;
src = fetchFromGitHub {
owner = "Lektrico";
repo = "lektricowifi";
rev = "refs/tags/v.${version}";
hash = "sha256-NwM1WpH6tS0iAVpG2gSFJpDPPn9nECHAzpOnWzeYPH4=";
};
postPatch = ''
substituteInPlace tests/test_mocked_devices.py \
--replace-fail "from asyncmock import AsyncMock" "from unittest.mock import AsyncMock"
'';
build-system = [ setuptools ];
pythonRelaxDeps = [
"pydantic"
];
dependencies = [
async-timeout
httpx
pydantic
];
pythonImportsCheck = [ "lektricowifi" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
# AttributeError: type object 'InfoForCharger' has no attribute 'from_dict'
doCheck = false;
meta = {
description = "Communication with Lektrico's chargers";
homepage = "https://github.com/Lektrico/lektricowifi";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View File

@ -6991,6 +6991,8 @@ self: super: with self; {
igraph-c = pkgs.igraph;
};
lektricowifi = callPackage ../development/python-modules/lektricowifi { };
leveldb = callPackage ../development/python-modules/leveldb { };
levenshtein = callPackage ../development/python-modules/levenshtein { };