apteryx pushed a commit to branch wip-ipython-polyglossia in repository guix.
commit ac261c7d144bba0dd7f7f0f6e7b8db94ce2cd8f4 Author: Maxim Cournoyer <[email protected]> AuthorDate: Wed Mar 23 00:28:38 2022 -0400 gnu: Add python-littleutils. * gnu/packages/python-xyz.scm (python-littleutils): New variable. --- gnu/packages/python-xyz.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index d3570f45df..eca5dc5898 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9015,6 +9015,23 @@ nodes to find the particular text that resulted in those nodes, for example for automated refactoring or highlighting.") (license license:asl2.0))) +(define-public python-littleutils + (package + (name "python-littleutils") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "littleutils" version)) + (sha256 + (base32 "0vwijrylppmk0nbddqvn527r9cg3zw8d6zk6r58hslry42jf7jp6")))) + (build-system python-build-system) + (home-page "https://github.com/alexmojaki/littleutils") + (synopsis "Python utility function collection") + (description "@code{littleutils} is a small collection of Python utility +functions, useful in the context of writing unit tests among other uses.") + (license license:expat))) + (define-public python-ipython (package (name "python-ipython")
