summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-idna/package.py
diff options
context:
space:
mode:
authorLuigi Calori <l.calori@cineca.it>2017-05-08 02:00:25 +0200
committerAdam J. Stewart <ajstewart426@gmail.com>2017-05-07 19:00:25 -0500
commitb65daa93be5d88ac1b2b5d9572f57acf4d9d0f9a (patch)
tree55ccb7e41117b4f1e3a5e7e2ed1f5e7544f25869 /var/spack/repos/builtin/packages/py-idna/package.py
parentbb1a8efaca5825e6e4323bb14a40c5e5d9074344 (diff)
downloadspack-b65daa93be5d88ac1b2b5d9572f57acf4d9d0f9a.tar.gz
spack-b65daa93be5d88ac1b2b5d9572f57acf4d9d0f9a.tar.bz2
spack-b65daa93be5d88ac1b2b5d9572f57acf4d9d0f9a.tar.xz
spack-b65daa93be5d88ac1b2b5d9572f57acf4d9d0f9a.zip
Paramiko python extensions + his deps and other related extensions (#4158)
* adding paramiko and missing dependencies, setup to work with #2548 * adding other deps for paramiko * fix flake8 errors * removed spurious add * address suggestion for proper dependencies * fix cryptography deps * remove FIXME comments and commented depends lines
Diffstat (limited to 'var/spack/repos/builtin/packages/py-idna/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-idna/package.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-idna/package.py b/var/spack/repos/builtin/packages/py-idna/package.py
new file mode 100644
index 0000000000..5a191430f2
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-idna/package.py
@@ -0,0 +1,38 @@
+##############################################################################
+# Copyright (c) 2013-2016, Lawrence Livermore National Security, LLC.
+# Produced at the Lawrence Livermore National Laboratory.
+#
+# This file is part of Spack.
+# Created by Todd Gamblin, tgamblin@llnl.gov, All rights reserved.
+# LLNL-CODE-647188
+#
+# For details, see https://github.com/llnl/spack
+# Please also see the LICENSE file for our notice and the LGPL.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU Lesser General Public License (as
+# published by the Free Software Foundation) version 2.1, February 1999.
+#
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
+# conditions of the GNU Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+##############################################################################
+#
+from spack import *
+
+
+class PyIdna(PythonPackage):
+ """Internationalized Domain Names for Python (IDNA 2008 and UTS #46) """
+
+ homepage = "https://github.com/kjd/idna"
+ url = "https://pypi.io/packages/source/i/idna/idna-2.5.tar.gz"
+
+ version('2.5', 'fc1d992bef73e8824db411bb5d21f012')
+
+ depends_on('py-setuptools', type=('build', 'link'))
+ depends_on('python@2.6:', type=('build', 'run'))