On Sun, Apr 24, 2016 at 11:06:23PM +1000, Ben Woodcroft wrote: > * gnu/packages/python.scm (python-natsort, python2-natsort): New > variables.
Thanks! > + (synopsis "Sort lists naturally") How about "Sort lists naturally rather than lexicographically"? > +(define-public python2-natsort > + (let ((base (package-with-python2 > + (strip-python2-variant python-natsort)))) > + (package > + (inherit base) > + (native-inputs > + (append (package-native-inputs base) > + `(("python2-mock" ,python2-mock) > + ("python2-pathlib" ,python2-pathlib) > + ("python2-enum34" ,python2-enum34) > + ("python2-setuptools" ,python2-setuptools))))))) Is it possible to use the technique used in 59f151ec54? I think it's best if all variants of this type are written the same way.