spack/var/spack/repos/builtin/packages/py-pympler/package.py
Todd Gamblin eea786f4e8 relicense: replace LGPL headers with Apache-2.0/MIT SPDX headers
- remove the old LGPL license headers from all files in Spack
- add SPDX headers to all files
  - core and most packages are (Apache-2.0 OR MIT)
  - a very small number of remaining packages are LGPL-2.1-only
2018-10-17 14:42:06 -07:00

24 lines
845 B
Python

# Copyright 2013-2018 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 PyPympler(PythonPackage):
"""Development tool to measure, monitor and analyze the memory behavior
of Python objects in a running Python application.
"""
homepage = "https://github.com/pympler/pympler"
url = "https://pypi.io/packages/source/P/Pympler/Pympler-0.4.3.tar.gz"
version('0.4.3', 'bbb4239126e9c99e2effc83b02bf8755')
version('0.4.2', '6bdfd913ad4c94036e8a2b358e49abd7')
version('0.4.1', '2d54032a6da91ff438f48d5f36b719a6')
version('0.4', '68e4a8aa4a268996fa6a321b664918af')
version('0.3.1', '906ce437f46fb30991007671a59d4319')
depends_on('python@2.5:')