spack/var/spack/repos/builtin/packages/py-pyasn1-modules/package.py
Adam J. Stewart 2e14cdb8fd
Move new packages from tutorial to builtin (#12289)
* Move new packages from tutorial to builtin

* Remove unicode character from docstring
2019-08-05 19:55:39 -05:00

22 lines
860 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 PyPyasn1Modules(PythonPackage):
"""A collection of ASN.1 modules expressed in form of pyasn1 classes.
Includes protocols PDUs definition (SNMP, LDAP etc.) and various data
structures (X.509, PKCS etc.)."""
homepage = "https://github.com/etingof/pyasn1-modules"
url = "https://pypi.io/packages/source/p/pyasn1-modules/pyasn1-modules-0.2.6.tar.gz"
version('0.2.6', sha256='43c17a83c155229839cc5c6b868e8d0c6041dba149789b6d6e28801c64821722')
depends_on('python@2.4:', type=('build', 'run'))
depends_on('py-setuptools', type='build')
depends_on('py-pyasn1@0.4.6:0.4.999', type=('build', 'run'))