diff --git a/docs/source/backends.rst b/docs/source/backends.rst
index ef61a1336..5e2f1c498 100644
--- a/docs/source/backends.rst
+++ b/docs/source/backends.rst
@@ -27,7 +27,6 @@ Backends
     platypush/backend/joystick.jstest.rst
     platypush/backend/joystick.linux.rst
     platypush/backend/kafka.rst
-    platypush/backend/light.hue.rst
     platypush/backend/log.http.rst
     platypush/backend/mail.rst
     platypush/backend/midi.rst
diff --git a/docs/source/platypush/backend/light.hue.rst b/docs/source/platypush/backend/light.hue.rst
deleted file mode 100644
index 4da03e10e..000000000
--- a/docs/source/platypush/backend/light.hue.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-``light.hue``
-===============================
-
-.. automodule:: platypush.backend.light.hue
-	:members:
-
diff --git a/platypush/backend/light/__init__.py b/platypush/backend/light/__init__.py
deleted file mode 100644
index e69de29bb..000000000
diff --git a/platypush/backend/light/hue/__init__.py b/platypush/backend/light/hue/__init__.py
deleted file mode 100644
index 686e1a51b..000000000
--- a/platypush/backend/light/hue/__init__.py
+++ /dev/null
@@ -1,25 +0,0 @@
-import warnings
-
-from platypush.backend import Backend
-
-
-class LightHueBackend(Backend):
-    """
-    **DEPRECATED**
-
-    The polling logic of this backend has been moved to the ``light.hue`` plugin itself.
-    """
-
-    def __init__(self, *args, **kwargs):
-        super().__init__(*args, **kwargs)
-        warnings.warn(
-            'The light.hue backend is deprecated. All of its logic '
-            'has been moved to the light.hue plugin itself.'
-        )
-
-    def run(self):
-        super().run()
-        self.logger.info('Stopped Hue lights backend')
-
-
-# vim:sw=4:ts=4:et:
diff --git a/platypush/backend/light/hue/manifest.yaml b/platypush/backend/light/hue/manifest.yaml
deleted file mode 100644
index 8103a7866..000000000
--- a/platypush/backend/light/hue/manifest.yaml
+++ /dev/null
@@ -1,6 +0,0 @@
-manifest:
-  events:
-  install:
-    pip: []
-  package: platypush.backend.light.hue
-  type: backend