Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding package recipe for Chartlets #28713

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions recipes/chartlets/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "chartlets" %}
{% set version = "0.0.29" %}
{% set python_min = "3.10" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://github.com/bcdev/chartlets/archive/{{ version }}.tar.gz
sha256: d3fb3d5c68d3af5fd93ecab5cc5a033ef4bec88a5b0d9c8630cdc0827021f09c

build:
noarch: python
script: {{ PYTHON }} -m pip install ./chartlets.py -vv
number: 0

requirements:
host:
- python {{ python_min }}
- setuptools >=61.2.0
- pip
run:
- python >={{ python_min }}

test:
requires:
- python {{ python_min }}
- pip
- altair
imports:
- chartlets
commands:
- pip check

about:
summary: Backend for server-configured charts library `Chartlets` powered by Vega Altair.
home: https://github.com/bcdev/chartlets
dev_url: https://github.com/bcdev/chartlets
license: MIT
license_file:
- LICENSE
- chartlets.py/LICENSE
b-yogesh marked this conversation as resolved.
Show resolved Hide resolved

extra:
recipe-maintainers:
- forman
- b-yogesh
Loading