spack/var/spack/repos/builtin/packages/py-ephem/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

20 lines
695 B
Python

# Copyright 2013-2023 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.package import *
class PyEphem(PythonPackage):
"""PyEphem provides an ephem Python package for
performing high-precision astronomy computations."""
homepage = "https://rhodesmill.org/pyephem/"
url = "https://github.com/brandon-rhodes/pyephem/archive/v3.7.7.1.tar.gz"
version("3.7.7.1", sha256="d9d05d85c0d38a79169acaef25964ac9df2d808f0d833354545b9ef681ff584d")
# pip silently replaces distutils with setuptools
depends_on("py-setuptools", type="build")