22 lines
690 B
Python
22 lines
690 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyFreezegun(PythonPackage):
|
|
"""FreezeGun is a library that allows your Python tests to travel
|
|
through time by mocking the datetime module."""
|
|
|
|
homepage = "https://github.com/spulec/freezegun"
|
|
pypi = "freezegun/freezegun-0.3.12.tar.gz"
|
|
|
|
license("Apache-2.0")
|
|
|
|
version("0.3.12", sha256="2a4d9c8cd3c04a201e20c313caf8b6338f1cfa4cda43f46a94cc4a9fd13ea5e7")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-six", type=("build", "run"))
|
|
depends_on("py-python-dateutil@2:", type=("build", "run"))
|