py-mapclassify: add new package at v2.4.2 (#20599)

This commit is contained in:
Adam J. Stewart 2020-12-29 00:56:21 -06:00 committed by GitHub
parent 49b5ce954a
commit f1a4810ac7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,24 @@
# Copyright 2013-2020 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 PyMapclassify(PythonPackage):
"""Classification Schemes for Choropleth Maps."""
homepage = "https://github.com/pysal/mapclassify"
url = "https://pypi.io/packages/source/m/mapclassify/mapclassify-2.4.2.tar.gz"
maintainers = ['adamjstewart']
version('2.4.2', sha256='bc20954aa433466f5fbc572e3f23b05f9606b59209f40b0ded93ac1ca983d24e')
depends_on('py-setuptools', type='build')
depends_on('py-scipy@1.0:', type=('build', 'run'))
depends_on('py-numpy@1.3:', type=('build', 'run'))
depends_on('py-scikit-learn', type=('build', 'run'))
depends_on('py-pandas@1.0:', type=('build', 'run'))
depends_on('py-networkx', type=('build', 'run'))