summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
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'))