Building a map and dissocing the keys which you want to impose conditions upon based on a predicate (here -- nil?) might be the simplest approach (NB. this function only tests keys explicitly mentioned as arguments; those not mentioned are never removed, whether the values attached to them satisfy the predicate or not):
(defn dissoc-when
"Dissoc those keys from m which are mentioned among ks and whose
values in m satisfy pred."
[pred m & ks]
(apply dissoc m (filter #(pred (m %)) ks)))
At the REPL:
user> (dissoc-when nil? {:foo nil :bar true :quux nil} :foo :bar)
{:quux nil, :bar true}
Though generally speaking, if you expect to work with a lot of maps representing real world entities of some particular type, you might want to go with records -- and then you can just skip all nils at the stage where you extract values from your input map, because records, when viewed as maps, always seem to include the keys corresponding to their fields. E.g.
(defrecord Person [username first-name last-name])
Then you can factor out the logic for "schema conversions" between maps:
(defn translate-map
"Transforms the data map in accordance with the spec in table.
Skips nil-valued entries."
[data table]
(->> table
(keep (fn [[to from]]
(when-let [from-val (get-in data from)]
[to from-val])))
(into {})))
Now your create-record function becomes a composition of translate-map and map->Person:
(defn create-person [data]
(map->Person
(translate-map data {:username [:username]
:first-name [:user-info :name :first]
:last-name [:user-info :name :last]
:gender [:user-info :sex]})))
If you do prefer working with regular maps, you could use something like the following instead for equivalent output:
(defn create-person [data]
(merge (zipmap [:username :first-name :last-name] (repeat nil))
(translate-map data {:username [:username]
:first-name [:user-info :name :first]
:last-name [:user-info :name :last]
:gender [:user-info :sex]})))
At the REPL (record version in Clojure 1.3):
user> (create-person {:username "jsmith"
:user-info {:name {:first "John" :last "Smith"}}})
#user.Person{:username "jsmith", :first-name "John", :last-name "Smith"}
user> (create-person {:username "jsmith"
:user-info {:name {:first "John" :last "Smith"}
:sex :male}})
#user.Person{:username "jsmith", :first-name "John", :last-name "Smith", :gender :male}