summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDesmond Orton <odesmond21@gmail.com>2021-11-12 01:30:18 -0600
committerGitHub <noreply@github.com>2021-11-11 23:30:18 -0800
commit11f6aac1e3fbd52be162b327e41fa4f811436730 (patch)
treea93dbe726dd75c87e6e35ba6afde31bc3dea1dd2
parentdbad9fd58a3efde2a9adf853f3ba8b1bb6c1ef43 (diff)
downloadspack-11f6aac1e3fbd52be162b327e41fa4f811436730.tar.gz
spack-11f6aac1e3fbd52be162b327e41fa4f811436730.tar.bz2
spack-11f6aac1e3fbd52be162b327e41fa4f811436730.tar.xz
spack-11f6aac1e3fbd52be162b327e41fa4f811436730.zip
New Package: py-setuptools-cpp (#27382)
-rw-r--r--var/spack/repos/builtin/packages/py-setuptools-cpp/package.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-setuptools-cpp/package.py b/var/spack/repos/builtin/packages/py-setuptools-cpp/package.py
new file mode 100644
index 0000000000..5f4af3deb2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-setuptools-cpp/package.py
@@ -0,0 +1,46 @@
+# Copyright 2013-2021 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 import *
+
+
+class PySetuptoolsCpp(PythonPackage):
+ """Simplified packaging for pybind11-based C++ extensions"""
+
+ homepage = "https://github.com/dmontagu/setuptools-cpp"
+ pypi = "setuptools_cpp/setuptools_cpp-0.1.0.tar.gz"
+
+ maintainers = ['dorton']
+
+ version('0.1.0', sha256='4fd5e08603237578d06d28efd592d9847b523ede3e502f660be44b1e6254674d')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-appdirs', type=('build', 'run'))
+ depends_on('py-atomicwrites', type=('build', 'run'))
+ depends_on('py-attrs', type=('build', 'run'))
+ depends_on('py-black', type=('build', 'run'))
+ depends_on('py-chardet', type=('build', 'run'))
+ depends_on('py-colorama', type=('build', 'run'))
+ depends_on('py-chardet', type=('build', 'run'))
+ depends_on('py-certifi', type=('build', 'run'))
+ depends_on('py-click', type=('build', 'run'))
+ depends_on('py-codecov', type=('build', 'run'))
+ depends_on('py-coverage', type=('build', 'run'))
+ depends_on('py-entrypoints', type=('build', 'run'))
+ depends_on('py-flake8', type=('build', 'run'))
+ depends_on('py-importlib-metadata', type=('build', 'run'))
+ depends_on('py-isort', type=('build', 'run'))
+ depends_on('py-jinja2', type=('build', 'run'))
+ depends_on('py-markdown', type=('build', 'run'))
+ depends_on('py-markupsafe', type=('build', 'run'))
+ depends_on('py-mccabe', type=('build', 'run'))
+ depends_on('py-more-itertools', type=('build', 'run'))
+ depends_on('py-mypy', type=('build', 'run'))
+ depends_on('py-mypy-extensions', type=('build', 'run'))
+ depends_on('py-packaging', type=('build', 'run'))
+ depends_on('py-pathspec', type=('build', 'run'))
+ depends_on('py-pluggy', type=('build', 'run'))
+ depends_on('py-tornado', type=('build', 'run'))
+ depends_on('py-typed-ast', type=('build', 'run'))