diff options
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 34cfc07307..29ac11df95 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -1290,6 +1290,31 @@ different units.") scatter plots, histograms and heatmaps in the terminal using braille dots.") (license license:expat))) +(define-public python-portpicker + (package + (name "python-portpicker") + (version "1.6.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "portpicker" version)) + (sha256 + (base32 "1yiisk4h8qliwf99khz3lszrpjf6km76fbhzg01fwrbgz7b7yl5x")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; This fails because portserver ends up in bin, not site-packages + '(list "--ignore=src/tests/portserver_test.py"))) + (propagated-inputs (list python-psutil)) + (native-inputs (list python-pytest net-tools)) + (home-page "https://github.com/google/python_portpicker") + (synopsis "Choose unique available network ports") + (description + "This package provides a library to choose unique available network +ports.") + (license license:asl2.0))) + (define-public python-mdx-gh-links (package (name "python-mdx-gh-links") @@ -33957,6 +33982,23 @@ functions markdown-compliant strings.") (license license:expat))) +(define-public python-yattag + (package + (name "python-yattag") + (version "1.15.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "yattag" version)) + (sha256 + (base32 "05p4dgdp8wwvnsvcv7n4zn8k602w345kw4vq67s9d792w55sa3wn")))) + (build-system python-build-system) + (synopsis "HTML or XML generator for Python") + (description + "Yattag is a Python library for generating HTML or XML in a pythonic way.") + (home-page "https://www.yattag.org/") + (license license:lgpl2.1))) + (define-public python-zbarlight (package (name "python-zbarlight") |