appdaemon: 4.0.8 -> 4.2.1

https://github.com/AppDaemon/appdaemon/blob/4.2.1/docs/HISTORY.rst
This commit is contained in:
Martin Weinelt
2023-02-20 01:16:22 +01:00
parent 88e2aa7c97
commit 10b858a022
+9 -9
View File
@@ -5,21 +5,20 @@
python3.pkgs.buildPythonApplication rec {
pname = "appdaemon";
version = "4.0.8";
disabled = python3.pythonOlder "3.6";
version = "4.2.1";
format = "setuptools";
disabled = python3.pythonOlder "3.7";
src = fetchFromGitHub {
owner = "AppDaemon";
repo = pname;
rev = version;
sha256 = "04a4qx0rbx2vpkzpibmwkpy7fawa6dbgqlrllryrl7dchbrf703q";
repo = "appdaemon";
rev = "refs/tags/${version}";
hash = "sha256-4sN0optkMmyWb5Cd3F7AhcXYHh7aidJE/bieYMEKgSY=";
};
# relax dependencies
postPatch = ''
substituteInPlace requirements.txt \
--replace "deepdiff==5.2.3" "deepdiff" \
--replace "pygments==2.8.1" "pygments"
# relax dependencies
sed -i 's/==/>=/' requirements.txt
'';
@@ -63,6 +62,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Sandboxed Python execution environment for writing automation apps for Home Assistant";
homepage = "https://github.com/AppDaemon/appdaemon";
changelog = "https://github.com/AppDaemon/appdaemon/blob/${version}/docs/HISTORY.rst";
license = licenses.mit;
maintainers = teams.home-assistant.members;
};