summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2022-06-16 15:15:58 +0200
committerRicardo Wurmus <rekado@elephly.net>2022-06-16 15:20:59 +0200
commit62c51214725e59fc216b9d13b87629de13c30ebe (patch)
treee7f3ff156cb256dae3f8f9b5431f7d7a07257bbd /gnu
parente4dbf938ea72132c1c6082f239aa844d7acb584f (diff)
gnu: Add python-interlap.
* gnu/packages/python-xyz.scm (python-interlap): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index d66a753a3d8..0cd811c9bbb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -23602,6 +23602,23 @@ several convenience Python scripts, including \"classic\" hex2bin and bin2hex
23602converters and more, those based on the library itself.") 23602converters and more, those based on the library itself.")
23603 (license license:bsd-3))) 23603 (license license:bsd-3)))
23604 23604
23605(define-public python-interlap
23606 (package
23607 (name "python-interlap")
23608 (version "0.2.7")
23609 (source (origin
23610 (method url-fetch)
23611 (uri (pypi-uri "interlap" version))
23612 (sha256
23613 (base32
23614 "1jbfh00bkrf0i5psa6n75rlgmqp5389xixa9j29w8rxhah6g7r1i"))))
23615 (build-system python-build-system)
23616 (home-page "https://brentp.github.io/interlap")
23617 (synopsis "Fast, simple interval overlap testing")
23618 (description "InterLap does fast interval overlap testing with a simple Python data
23619structure.")
23620 (license license:expat)))
23621
23605(define-public python-pykwalify 23622(define-public python-pykwalify
23606 (package 23623 (package
23607 (name "python-pykwalify") 23624 (name "python-pykwalify")