[py-linkify-it-py] New package (#39305)
* [py-linkify-it-py] New package * [py-linkify-it-py] Added version 1.0.3
This commit is contained in:
parent
5d70c0f100
commit
cead6ef98d
1 changed files with 21 additions and 0 deletions
21
var/spack/repos/builtin/packages/py-linkify-it-py/package.py
Normal file
21
var/spack/repos/builtin/packages/py-linkify-it-py/package.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# 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 PyLinkifyItPy(PythonPackage):
|
||||
"""Links recognition library with FULL unicode support."""
|
||||
|
||||
homepage = "https://github.com/tsutsu3/linkify-it-py"
|
||||
pypi = "linkify-it-py/linkify-it-py-2.0.2.tar.gz"
|
||||
|
||||
version("2.0.2", sha256="19f3060727842c254c808e99d465c80c49d2c7306788140987a1a7a29b0d6ad2")
|
||||
version("1.0.3", sha256="2b3f168d5ce75e3a425e34b341a6b73e116b5d9ed8dbbbf5dc7456843b7ce2ee")
|
||||
|
||||
depends_on("python@3.6:", when="@1.0.3", type=("build", "run"))
|
||||
depends_on("python@3.7:", when="@2.0.2:", type=("build", "run"))
|
||||
depends_on("py-setuptools", type="build")
|
||||
depends_on("py-uc-micro-py", type=("build", "run"))
|
Loading…
Reference in a new issue