py-pydevtool: add new package (#40377)

This commit is contained in:
Adam J. Stewart 2023-10-09 08:09:59 -05:00 committed by GitHub
parent bb2ff802e2
commit 831cbec71f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# 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 PyDoit(PythonPackage):
"""doit - Automation Tool."""
homepage = "http://pydoit.org/"
pypi = "doit/doit-0.36.0.tar.gz"
version("0.36.0", sha256="71d07ccc9514cb22fe59d98999577665eaab57e16f644d04336ae0b4bae234bc")
depends_on("python@3.8:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-cloudpickle", type=("build", "run"))
depends_on("py-importlib-metadata@4.4:", type=("build", "run"))

View File

@ -0,0 +1,19 @@
# 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 PyPydevtool(PythonPackage):
"""CLI dev tools powered by pydoit."""
homepage = "https://github.com/pydoit/pydevtool"
pypi = "pydevtool/pydevtool-0.3.0.tar.gz"
version("0.3.0", sha256="25e3ba4f3d33ccac33ee2b9775995848d49e9b318b7a146477fb5d52f786fc8a")
depends_on("python@3.8:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-doit@0.36:", type=("build", "run"))