diff options
author | Jen Herting <jen@herting.cc> | 2021-10-13 09:50:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 15:50:07 +0200 |
commit | 8ad608a75612d207f1c1a0b48e47067853081ddc (patch) | |
tree | 48576339607108bff5fd023ff34f38d26ced16b9 | |
parent | 252784ccf5a381f5a611ca74cc486f74218b9ce6 (diff) | |
download | spack-8ad608a75612d207f1c1a0b48e47067853081ddc.tar.gz spack-8ad608a75612d207f1c1a0b48e47067853081ddc.tar.bz2 spack-8ad608a75612d207f1c1a0b48e47067853081ddc.tar.xz spack-8ad608a75612d207f1c1a0b48e47067853081ddc.zip |
py-convokit: new package (#26236)
Co-authored-by: Sid Pendelberry <sid@rit.edu>
-rw-r--r-- | var/spack/repos/builtin/packages/py-convokit/package.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-convokit/package.py b/var/spack/repos/builtin/packages/py-convokit/package.py new file mode 100644 index 0000000000..5845cac394 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-convokit/package.py @@ -0,0 +1,31 @@ +# 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 PyConvokit(PythonPackage): + """This toolkit contains tools to extract conversational features and + analyze social phenomena in conversations, using a single unified interface + inspired by (and compatible with) scikit-learn. """ + + homepage = "https://convokit.cornell.edu/" + pypi = "convokit/convokit-2.5.tar.gz" + + version('2.5', sha256='90de76c2a2df69eedeb20e0b89ff293a51180fb0152189f108c3331b7b7bb698') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-matplotlib@3.0.0:', type=('build', 'run')) + depends_on('py-pandas@0.23.4:', type=('build', 'run')) + depends_on('py-msgpack-numpy@0.4.3.2:', type=('build', 'run')) + depends_on('py-spacy@2.3.5:', type=('build', 'run')) + depends_on('py-scipy@1.1.0:', type=('build', 'run')) + depends_on('py-scikit-learn@0.20.0:', type=('build', 'run')) + depends_on('py-nltk@3.4:', type=('build', 'run')) + depends_on('py-dill@0.2.9:', type=('build', 'run')) + depends_on('py-joblib@0.13.2:', type=('build', 'run')) + depends_on('py-clean-text@0.1.1:', type=('build', 'run')) + depends_on('py-unidecode@1.1.1:', type=('build', 'run')) |