[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
65/204: gnu: Add python-ordered-set.
From: |
guix-commits |
Subject: |
65/204: gnu: Add python-ordered-set. |
Date: |
Wed, 20 Apr 2022 02:03:21 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit f9fb5c811e2e33856843119d8220a084a1431d3a
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 6 13:44:02 2022 -0400
gnu: Add python-ordered-set.
* gnu/packages/python-xyz.scm (python-ordered-set): New variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e71c1e4248..326123dfc6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -29327,6 +29327,32 @@ simple mock/record and a complete capture/replay
framework.")
interfaces.")
(license license:bsd-3)))
+(define-public python-ordered-set
+ (package
+ (name "python-ordered-set")
+ (version "4.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "ordered-set" version))
+ (sha256
+ (base32 "1a34fg3r3480nfm6652kyqql3lwixf8jirzdja9camvnr128wjk9"))))
+ (build-system python-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "pytest" "-vv")))))))
+ (native-inputs (list python-cython python-pytest))
+ (home-page "https://github.com/simonpercivall/orderedset")
+ (synopsis "Ordered Set implementation in Cython")
+ (description "This library provides an @code{OrderedSet} data type that
+works like a regular set, but remembers insertion order. It supports the full
+Python @code{set} interface.")
+ (license license:asl2.0)))
+
(define-public python-orgparse
(package
(name "python-orgparse")
- 34/204: gnu: Add python-ufoprocessor., (continued)
- 34/204: gnu: Add python-ufoprocessor., guix-commits, 2022/04/20
- 29/204: gnu: Add python-fontparts-bootstrap., guix-commits, 2022/04/20
- 35/204: gnu: Add python-ufonormalizer., guix-commits, 2022/04/20
- 41/204: gnu: Add python-types-freezegun., guix-commits, 2022/04/20
- 48/204: gnu: python-pytest-black: Update to 0.3.12., guix-commits, 2022/04/20
- 60/204: gnu: python-factory-boy: Update to 3.2.1., guix-commits, 2022/04/20
- 68/204: gnu: python-setuptools: Update to 62.0.0., guix-commits, 2022/04/20
- 72/204: gnu: Add python-scikit-build., guix-commits, 2022/04/20
- 86/204: gnu: Add font-amiri., guix-commits, 2022/04/20
- 59/204: gnu: Add python-pytest-perf., guix-commits, 2022/04/20
- 65/204: gnu: Add python-ordered-set.,
guix-commits <=
- 91/204: gnu: python-flask: Update to 2.1.1., guix-commits, 2022/04/20
- 94/204: gnu: pylint: Run tests in parallel., guix-commits, 2022/04/20
- 95/204: gnu: python-trio: Update to 0.20.0., guix-commits, 2022/04/20
- 98/204: gnu: python-greenlet: Update to 1.1.2., guix-commits, 2022/04/20
- 103/204: gnu: python-jupyter-core: Update to 4.10.0., guix-commits, 2022/04/20
- 105/204: gnu: python-ipykernel: Update to 6.13.0., guix-commits, 2022/04/20
- 112/204: gnu: Add texlive-lm-math., guix-commits, 2022/04/20
- 144/204: gnu: python-falcon: Update to 3.1.0., guix-commits, 2022/04/20
- 43/204: gnu: Add python-pytest-freezegun., guix-commits, 2022/04/20
- 45/204: gnu: Add python-path-bootstrap., guix-commits, 2022/04/20