diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6b92200beb..6c0930f8f7 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -239,6 +239,21 @@ (define-public python-twodict features of the Python's built-in dict.") (license license:unlicense))) +(define-public python2-twodict + (package + (inherit python-twodict) + (name "python2-twodict") + (version "1.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "twodict" version)) + (sha256 + (base32 "0ifv7dv18jn2lg0a3l6zdlvmmlda2ivixfjbsda58a2ay6kxznr0")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2)))) + (define-public python-argopt (package (name "python-argopt")