
We'd like to use a consistent checksum scheme everywhere so that we can: a) incorporate archive checksums into our specs and have a consistent hashing algorithm across all specs. b) index mirrors with a consistent type of checksum, and not one that is dependent on how spack packages are written. - [x] convert existing md5, sha224, sha512, sha1 checksums to sha256
21 lines
790 B
Python
21 lines
790 B
Python
# Copyright 2013-2019 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 PySpykeutils(PythonPackage):
|
|
"""Utilities for analyzing electrophysiological data"""
|
|
|
|
homepage = "https://github.com/rproepp/spykeutils"
|
|
url = "https://pypi.io/packages/source/s/spykeutils/spykeutils-0.4.3.tar.gz"
|
|
|
|
version('0.4.3', sha256='ff6206d9116d665024109c997377bfed37d953a4cac2859b79a610f395b6b37b')
|
|
|
|
depends_on('py-setuptools', type='build')
|
|
depends_on('py-scipy', type=('build', 'run'))
|
|
depends_on('py-quantities', type=('build', 'run'))
|
|
depends_on('py-neo@0.2.1:0.3.99', type=('build', 'run'))
|