diff options
author | Dan D'Avella <ddavella@stsci.edu> | 2018-03-07 00:57:54 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-03-07 00:57:54 -0500 |
commit | 92677c089d1a5b0ae5b44feb8f5c19a96d27980c (patch) | |
tree | 8a1d2f5239be1b15647505d8947278823439d62c /fast-histogram/meta.yaml | |
parent | 20bdd76a3cbcef18c0f947a67a3760d07cfc8b6a (diff) | |
download | astroconda-dev-92677c089d1a5b0ae5b44feb8f5c19a96d27980c.tar.gz |
Build glue-core from latest source (#114)
* Fix glue-core recipe to build from latest source
* Fix glue-core dependency in cubeviz
* Add recipe for mpl-scatter-density (dependency of glue-core)
* Add recipe for fast-histogram (dependency of mpl-scatter-density)
* AstroCondaify fast-histogram
* AstroCondaify mpl-scatter-density
* AstroCondaify glue-core
* glue-core: add mpl-scatter-density
Diffstat (limited to 'fast-histogram/meta.yaml')
-rw-r--r-- | fast-histogram/meta.yaml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/fast-histogram/meta.yaml b/fast-histogram/meta.yaml new file mode 100644 index 0000000..4a42f1b --- /dev/null +++ b/fast-histogram/meta.yaml @@ -0,0 +1,43 @@ +{% set name = "fast-histogram" %} +{% set version = "0.3" %} +{% set number = '0' %} +{% set sha256 = "fdfab401aed9ba2bf96cac2f41679dbb26e0da520e7fd0428e8b1aa20b47ac0d" %} + +about: + home: http://github.com/astrofrog/fast-histogram + license: BSD + license_family: BSD + license_file: LICENSE + summary: 'Fast 1D and 2D histogram functions in Python' + description: Fast 1D and 2D histogram functions in Python + doc_url: http://github.com/astrofrog/fast-histogram + dev_url: http://github.com/astrofrog/fast-histogram + +package: + name: {{ name|lower }} + version: {{ version }} + +build: + number: {{ number }} + +requirements: + build: + - setuptools + - numpy {{ numpy }} + - python {{ python }} + run: + - numpy + - python + +source: + fn: {{ name }}-{{ version }}.tar.gz + url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz + sha256: {{ sha256 }} + +test: + imports: + - fast_histogram + +extra: + recipe-maintainers: + - astrofrog-conda-forge |