Skip to content

conda-forge channel support #198

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

Open
wants to merge 3 commits into
base: master
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
47 changes: 47 additions & 0 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{% set name = "tksheet" %}
{% set version = "6.2.3" %}

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

source:
url: https://github.com/ragardner/tksheet/releases/download/{{ version }}/tksheet-{{ version }}.tar.gz
url: https://github.com/ragardner/tksheet/archive/{{ version }}.tar.gz
sha256: c370e2a1f2c63f364271d44fd811ab2dfbdba204ba6f9cb3bdb1a82b99cc0c65

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

requirements:
host:
- python >=3.6
- pip
run:
- python >=3.6
- tk >=8.6

test:
imports:
- tksheet
commands:
- pip check
requires:
- pip

about:
home: https://github.com/ragardner/tksheet
summary: Python 3.6+ tkinter table widget for displaying tabular data
description: |
A Tkinter spreadsheet widget for Python 3.6+.
license: MIT
license_family: MIT
license_file: LICENSE.txt
doc_url: https://github.com/ragardner/tksheet/wiki
dev_url: https://github.com/ragardner/tksheet

extra:
recipe-maintainers:
- ragardner