Since 1.8, we have {{map-entry?}} predicate, but no corresponding constructor function. Implementation could be as simple as:
(defn map-entry
"Creates a new map entry with key k and value v.
See also: map-entry?, key, val"
[k v]
(clojure.lang.MapEntry/create k v))