Description: Port to python3.13
 Python 3.13 removes a large amount of so called 'dead battery' libraries 
 from the standard library. As such, code that imports these libraries 
 will no longer work in Python 3.13, which is the targeted version for 
 Trixie. The following removed libraries were found in this package:
 pipes: data/labels/make_labels.py:3
Bug-Debian: http://bugs.debian.org/1084609
Author: Ying-Chun Liu (PaulLiu) <paulliu@debian.org>
Index: darknet-0.0.0+git20180914.61c9d02e/data/labels/make_labels.py
===================================================================
--- darknet-0.0.0+git20180914.61c9d02e.orig/data/labels/make_labels.py
+++ darknet-0.0.0+git20180914.61c9d02e/data/labels/make_labels.py
@@ -1,6 +1,6 @@
 import os
 import string
-import pipes
+import shlex as pipes
 
 font = 'futura-normal'
 
