summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorSinan <sbulutw@gmail.com>2019-08-26 18:51:33 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2019-08-26 18:51:33 -0700
commit9a54139a2dcfa5dee67f4503c024dbd2cc376973 (patch)
tree20fe454dfc9e1aac0baffb3aa6ae1b78bf8dcea6 /var
parent8f771acc1e0a9803bc461cedaa005abb35308335 (diff)
downloadspack-9a54139a2dcfa5dee67f4503c024dbd2cc376973.tar.gz
spack-9a54139a2dcfa5dee67f4503c024dbd2cc376973.tar.bz2
spack-9a54139a2dcfa5dee67f4503c024dbd2cc376973.tar.xz
spack-9a54139a2dcfa5dee67f4503c024dbd2cc376973.zip
New package: py-sgp4 (#12557)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sgp4/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sgp4/package.py b/var/spack/repos/builtin/packages/py-sgp4/package.py
new file mode 100644
index 0000000000..bbddcb6479
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sgp4/package.py
@@ -0,0 +1,18 @@
+# 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 PySgp4(PythonPackage):
+ """Track earth satellite TLE orbits using up-to-date 2010 version of SGP4
+ """
+
+ homepage = "https://github.com/brandon-rhodes/python-sgp4"
+ url = "https://pypi.io/packages/source/s/sgp4/sgp4-1.4.tar.gz"
+
+ version('1.4', sha256='1fb3cdbc11981a9ff34a032169f83c1f4a2877d1b6c295aed044e1d890b73892')
+
+ depends_on('python@2.6:2.8,3.3:', type=('build', 'run'))