Merge pull request #306312 from fabaff/deebot-client-bump
python312Packages.deebot-client: 6.0.2 -> 7.0.0
This commit is contained in:
commit
6a4308091a
1 changed files with 25 additions and 26 deletions
|
@ -1,43 +1,44 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, aiomqtt
|
||||
, buildPythonPackage
|
||||
, cachetools
|
||||
, defusedxml
|
||||
, docker
|
||||
, fetchFromGitHub
|
||||
, numpy
|
||||
, pillow
|
||||
, pycountry
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
, setuptools-scm
|
||||
, svg-py
|
||||
, testfixtures
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
aiomqtt,
|
||||
buildPythonPackage,
|
||||
cachetools,
|
||||
defusedxml,
|
||||
docker,
|
||||
fetchFromGitHub,
|
||||
numpy,
|
||||
pillow,
|
||||
pycountry,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
svg-py,
|
||||
testfixtures,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deebot-client";
|
||||
version = "6.0.2";
|
||||
version = "7.0.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
disabled = pythonOlder "3.12";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "DeebotUniverse";
|
||||
repo = "client.py";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-PjM2bh79o4bBv3zQyFYehhdlvXKFW8Hk0ZKfZDAuiQU=";
|
||||
hash = "sha256-RlLWC1TLjrwQ7t727WpjePJA1zGj4460Ioj6efm/jSw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
build-system = [
|
||||
setuptools
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dependencies = [
|
||||
aiohttp
|
||||
aiomqtt
|
||||
cachetools
|
||||
|
@ -55,9 +56,7 @@ buildPythonPackage rec {
|
|||
testfixtures
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"deebot_client"
|
||||
];
|
||||
pythonImportsCheck = [ "deebot_client" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tests require running container
|
||||
|
|
Loading…
Reference in a new issue