-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6623 from hajapy/astral
add astral 1.6.1 recipe
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% set name = "astral" %} | ||
{% set version = "1.6.1" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz | ||
sha256: ab0c08f2467d35fcaeb7bad15274743d3ac1ad18b5391f64a0058a9cd192d37d | ||
|
||
build: | ||
noarch: python | ||
number: 0 | ||
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv" | ||
|
||
requirements: | ||
host: | ||
- python | ||
- pip | ||
run: | ||
- python | ||
- pytz | ||
- requests | ||
|
||
test: | ||
imports: | ||
- astral | ||
|
||
|
||
about: | ||
home: http://github.com/sffjunkie/astral | ||
license: Apache-2.0 | ||
license_family: Apache | ||
license_file: LICENSE | ||
summary: 'Python calculations for the position of the sun and moon.' | ||
|
||
description: | | ||
Astral is a python module for calculating the times of various aspects of the sun and moon. | ||
doc_url: https://astral.readthedocs.io/en/stable/index.html | ||
dev_url: http://github.com/sffjunkie/astral | ||
|
||
extra: | ||
recipe-maintainers: | ||
- hajapy |