darwin
This commit is contained in:
@@ -129,7 +129,7 @@ in
|
|||||||
inStageManager = true;
|
inStageManager = true;
|
||||||
};
|
};
|
||||||
clickWallpaperToRevealDesktop = "Always";
|
clickWallpaperToRevealDesktop = "Always";
|
||||||
stageManager = true;
|
stageManager = false;
|
||||||
showRecentAppsInStageManager = true;
|
showRecentAppsInStageManager = true;
|
||||||
showWindowsFromAnApplication = "All at Once";
|
showWindowsFromAnApplication = "All at Once";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{ pkgs, fetchPypi, ... }:
|
{ pkgs, fetchPypi, ... }:
|
||||||
pkgs.stable.python3Packages.buildPythonPackage rec {
|
pkgs.python3Packages.buildPythonPackage rec {
|
||||||
pname = "homeassistant_api";
|
pname = "homeassistant_api";
|
||||||
version = "5.0.0";
|
version = "5.0.0";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
@@ -10,16 +10,16 @@ pkgs.stable.python3Packages.buildPythonPackage rec {
|
|||||||
|
|
||||||
# do not run tests
|
# do not run tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
nativeBuildInputs = with pkgs.stable.python3Packages; [
|
nativeBuildInputs = with pkgs.python3Packages; [
|
||||||
poetry-core
|
poetry-core
|
||||||
requests-cache
|
requests-cache
|
||||||
];
|
];
|
||||||
dependencies = with pkgs.stable.python3Packages; [
|
dependencies = with pkgs.python3Packages; [
|
||||||
requests-cache
|
requests-cache
|
||||||
pydantic
|
pydantic
|
||||||
websockets
|
websockets
|
||||||
];
|
];
|
||||||
propagatedBuildInputs = with pkgs.stable.python3Packages; [
|
propagatedBuildInputs = with pkgs.python3Packages; [
|
||||||
aiohttp
|
aiohttp
|
||||||
aiohttp-client-cache
|
aiohttp-client-cache
|
||||||
pydantic
|
pydantic
|
||||||
|
|||||||
Reference in New Issue
Block a user