diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-23 00:28:38 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:45:20 -0400 |
commit | 68d7bc9ee518fd8d4485b1da89180860173e4481 (patch) | |
tree | 43c09b611a2b9a99a9313dad921e5b5b27e75296 /gnu | |
parent | 952c8f805cd1f67ae192c0904e89ba8fe490d8ba (diff) | |
download | guix-68d7bc9ee518fd8d4485b1da89180860173e4481.tar.gz |
gnu: Add python-littleutils.
* gnu/packages/python-xyz.scm (python-littleutils): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1d3c4ca3e1..87c9bb015c 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9055,6 +9055,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") |