Secondo il Documenti Djongo per ArrayField dovresti creare un'istanza in questo modo:
entry = Entry()
entry.authors = [{'name': 'John', 'email': '[email protected]'},
{'name': 'Paul', 'email': '[email protected]'}]
entry.save()
Quindi nel tuo caso lo faresti.
items = Items()
items.inventory = [
{'item_name': 'Helmet'}
]
items.save()