Merge pull request #304911 from pbsds/fix-uptime-kuma-api-1713391016

python312Packages.uptime-kuma-api: unbreak with missing dependency
This commit is contained in:
rewine 2024-04-18 22:02:55 +08:00 committed by GitHub
commit 5c51332c81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, packaging
, python-socketio
, pythonOlder
}:
@ -19,6 +20,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
packaging
python-socketio
python-socketio.optional-dependencies.client
];