From 071c74d1858d02179e7b94fbcd5406dd6b9301e9 Mon Sep 17 00:00:00 2001 From: Lydéric Debusschère Date: Wed, 6 Dec 2023 15:42:48 +0100 Subject: py-tldextract: new package (#41330) * py-tldextract: new package * py-tldextract: add version 5.1.1 * py-tldextract: fix version constraint on py-setuptools-scm --------- Co-authored-by: LydDeb --- .../builtin/packages/py-tldextract/package.py | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 var/spack/repos/builtin/packages/py-tldextract/package.py diff --git a/var/spack/repos/builtin/packages/py-tldextract/package.py b/var/spack/repos/builtin/packages/py-tldextract/package.py new file mode 100644 index 0000000000..e97b4a00a2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-tldextract/package.py @@ -0,0 +1,32 @@ +# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class PyTldextract(PythonPackage): + """ + Accurately separates a URL's subdomain, domain, and public suffix, + using the Public Suffix List (PSL). By default, this includes the + public ICANN TLDs and their exceptions. You can optionally support + the Public Suffix List's private domains as well. + """ + + homepage = "https://github.com/john-kurkowski/tldextract" + pypi = "tldextract/tldextract-3.4.1.tar.gz" + + maintainers("LydDeb") + + version("5.1.1", sha256="9b6dbf803cb5636397f0203d48541c0da8ba53babaf0e8a6feda2d88746813d4") + version("3.4.1", sha256="fa9e50c4a03bede2a1d95dca620d661678484626858ccf388cf9671a0dd497a4") + + depends_on("py-setuptools@61.2:", when="@5.1.1", type="build") + depends_on("py-setuptools", type="build") + depends_on("py-setuptools-scm@6.2:+toml", when="@5.1.1", type="build") + depends_on("py-setuptools-scm", type="build") + depends_on("py-idna", type=("build", "run")) + depends_on("py-requests@2.1.0:", type=("build", "run")) + depends_on("py-requests-file@1.4:", type=("build", "run")) + depends_on("py-filelock@3.0.8:", type=("build", "run")) -- cgit v1.2.3-70-g09d2