mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
python312Packages.lektricowifi: init at 0.0.43
This commit is contained in:
parent
f645888bb5
commit
31bcaf75e8
58
pkgs/development/python-modules/lektricowifi/default.nix
Normal file
58
pkgs/development/python-modules/lektricowifi/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user