summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormanifest <robqiao@users.noreply.github.com>2020-10-17 01:37:23 +1030
committerGitHub <noreply@github.com>2020-10-16 17:07:23 +0200
commit506d2795a844e254d078a7f5c903ac7035e62ae9 (patch)
treeec7fd7e94754ce44b8b8f0a98a4143823afc7410
parent8c7385096ef862206eb164d2d543393b2d8faff3 (diff)
downloadspack-506d2795a844e254d078a7f5c903ac7035e62ae9.tar.gz
spack-506d2795a844e254d078a7f5c903ac7035e62ae9.tar.bz2
spack-506d2795a844e254d078a7f5c903ac7035e62ae9.tar.xz
spack-506d2795a844e254d078a7f5c903ac7035e62ae9.zip
py-inheritance: added new package at v0.1.5 (#19337)
-rw-r--r--var/spack/repos/builtin/packages/py-inheritance/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-inheritance/package.py b/var/spack/repos/builtin/packages/py-inheritance/package.py
new file mode 100644
index 0000000000..1620794a7b
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-inheritance/package.py
@@ -0,0 +1,21 @@
+# 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 PyInheritance(PythonPackage):
+ """This module is a general-purpose framework for evaluating if a
+ family exihibits, for example, and autosomal dominant pattern.
+ """
+
+ homepage = "https://github.com/brentp/inheritance"
+ url = "https://github.com/brentp/inheritance/archive/v0.1.5.tar.gz"
+
+ version('0.1.5', sha256='d0621328649a636a42766488fbd0d36d7fb898429120fc579d656711147a0c7c')
+ version('0.1.3', sha256='c12e668ff3d34d9544b0eb4a58e7ba94f265d610545bb151e330ec014a07fda6')
+
+ depends_on('python', type=('build', 'run'))
+ depends_on('py-setuptools', type='build')