fmt
This commit is contained in:
@@ -41,4 +41,4 @@ stdenvNoCC.mkDerivation rec {
|
||||
platforms = with lib.platforms; linux ++ darwin ++ windows;
|
||||
license = with lib.licenses; [ gpl3Only ];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,19 +24,21 @@ python3Packages.buildPythonPackage rec {
|
||||
|
||||
build-system = with python3Packages; [ hatchling ];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
aiohttp
|
||||
aiomqtt
|
||||
click
|
||||
construct
|
||||
paho-mqtt
|
||||
protobuf
|
||||
pycryptodome
|
||||
pyrate-limiter
|
||||
vacuum-map-parser-roborock
|
||||
click-shell
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin (with python3Packages; [ pycryptodomex ]);
|
||||
dependencies =
|
||||
with python3Packages;
|
||||
[
|
||||
aiohttp
|
||||
aiomqtt
|
||||
click
|
||||
construct
|
||||
paho-mqtt
|
||||
protobuf
|
||||
pycryptodome
|
||||
pyrate-limiter
|
||||
vacuum-map-parser-roborock
|
||||
click-shell
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin (with python3Packages; [ pycryptodomex ]);
|
||||
|
||||
nativeCheckInputs = with python3Packages; [
|
||||
aioresponses
|
||||
@@ -58,4 +60,4 @@ python3Packages.buildPythonPackage rec {
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
mainProgram = "roborock";
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user