summaryrefslogtreecommitdiff
path: root/gnu/packages/python-web.scm
diff options
context:
space:
mode:
authorMekeor Melire <mekeor.melire@gmail.com>2025-02-05 21:12:48 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-05 21:54:07 +0000
commit55a2baf1271d8bcd39b876642539ae5e3d9a5892 (patch)
tree136fc73eb04c8b3e77f737449fbc8ab4db7e6088 /gnu/packages/python-web.scm
parenta8f223f91cf1170c85c0133e12856476e40a8288 (diff)
gnu: Add python-publicsuffixlist.
It was preoposed in #48514 on <2021-05-19>. * gnu/packages/python-web.scm (python-publicsuffixlist): New variable. Change-Id: Iacecd5e9e49f9136935a65c83c09a643e371738b Reviewed-by: Xinglu Chen <public@yoctocell.xyz> Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r--gnu/packages/python-web.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index cc6509ea1d6..6f6b1dadfe2 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -47,6 +47,7 @@
47;;; Copyright © 2021, 2022, 2024 Arun Isaac <arunisaac@systemreboot.net> 47;;; Copyright © 2021, 2022, 2024 Arun Isaac <arunisaac@systemreboot.net>
48;;; Copyright © 2021, 2022, 2024 jgart <jgart@dismail.de> 48;;; Copyright © 2021, 2022, 2024 jgart <jgart@dismail.de>
49;;; Copyright © 2021 Alice Brenon <alice.brenon@ens-lyon.fr> 49;;; Copyright © 2021 Alice Brenon <alice.brenon@ens-lyon.fr>
50;;; Copyright © 2021 Mekeor Melire <mekeor.melire@gmail.com>
50;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com> 51;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
51;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> 52;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
52;;; Copyright © 2022, 2023, 2025 Felix Gruber <felgru@posteo.net> 53;;; Copyright © 2022, 2023, 2025 Felix Gruber <felgru@posteo.net>
@@ -1464,6 +1465,34 @@ Model} (SAM) templates into AWS CloudFormation templates.")
1464emit information from within their applications to the AWS X-Ray service.") 1465emit information from within their applications to the AWS X-Ray service.")
1465 (license license:asl2.0))) 1466 (license license:asl2.0)))
1466 1467
1468(define-public python-publicsuffixlist
1469 (package
1470 (name "python-publicsuffixlist")
1471 (version "1.0.2.20250202")
1472 (source
1473 (origin
1474 (method url-fetch)
1475 (uri (pypi-uri "publicsuffixlist" version))
1476 (sha256
1477 (base32 "0llam7g7sv08lcfgy18iph8br8ldjmy2qbjaykc9pd3z4iisb0yd"))))
1478 (build-system pyproject-build-system)
1479 (native-inputs
1480 (list python-setuptools
1481 python-wheel))
1482 (home-page "https://github.com/ko-zu/psl")
1483 (synopsis "Public suffix list for Python")
1484 (description
1485 "This package provides an implementation of
1486@url{https://publicsuffix.org/, Public Suffix List } as Python library.
1487
1488Features:
1489@itemize
1490@item supports IDN (unicode and punycoded)
1491@item shipped with built-in PSL and an updater script
1492@item written in Pure Python with no library dependencies
1493@end itemize")
1494 (license license:mpl2.0)))
1495
1467(define-public python-python3-saml 1496(define-public python-python3-saml
1468 (package 1497 (package
1469 (name "python-python3-saml") 1498 (name "python-python3-saml")