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

Add dimspy recipes for reference purposes #12387

Merged
merged 4 commits into from
Nov 28, 2018
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion build-fail-blacklist
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ recipes/smalt
recipes/perl-file-homedir

# needs some special treatment, shorter prefix than normal pkgs
recipes/dimspy/1.1.0
recipes/dimspy
recipes/dimspy/1.2.0
recipes/dimspy/1.1.0
recipes/dimspy/1.0.0


#can't find file to patch at input line 3
recipes/erds

Expand Down
3 changes: 3 additions & 0 deletions recipes/dimspy/1.2.0/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

$PYTHON setup.py install --single-version-externally-managed --record=record.txt
48 changes: 48 additions & 0 deletions recipes/dimspy/1.2.0/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package:
name: dimspy
version: "1.2.0"

source:
url: https://files.pythonhosted.org/packages/ed/a9/915b082888d0d145af747da12cab7bb26ecfe143ec6bced7aac5dedca0c6/dimspy-1.2.0.tar.gz
md5: b4a31230e9d5fd89a0aca601a9bc672b

build:
skip: True # [py3k]
number: 1
entry_points:
- dimspy = dimspy.__main__:main

requirements:
build:
- python
- setuptools
- numpy
- scipy
- fastcluster
- pymzml <=2.0.0
- h5py
- pythonnet
run:
- python
- numpy
- scipy
- fastcluster
- pymzml <=2.0.0
- h5py
- pythonnet

test:
imports:
- dimspy
- dimspy.models
- dimspy.portals
- dimspy.process

commands:
- dimspy --help

about:
home: https://github.com/computational-metabolomics/dimspy
license: GPLv3
summary: 'Python package for data processing of direct-infusion mass spectrometry-based metabolomics and lipidomics data'
license_family: GPL3
14 changes: 7 additions & 7 deletions recipes/dimspy/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
package:
name: dimspy
version: "1.2.0"
version: "1.3.0"

source:
url: https://files.pythonhosted.org/packages/ed/a9/915b082888d0d145af747da12cab7bb26ecfe143ec6bced7aac5dedca0c6/dimspy-1.2.0.tar.gz
md5: b4a31230e9d5fd89a0aca601a9bc672b
url: https://files.pythonhosted.org/packages/e0/a5/b2bf1c47bb7f31db1a902d9a435a12d982ef47d8493f3246df21ca87d0f7/dimspy-1.3.0.tar.gz
md5: cd15e9aea8f74a7d08e434c5358a6504

build:
skip: True # [py3k]
number: 1
number: 0
entry_points:
- dimspy = dimspy.__main__:main

requirements:
host:
build:
- python
- setuptools
- numpy
- scipy
- fastcluster
- pymzml
- pymzml <=2.0.0
- h5py
- pythonnet
run:
- python
- numpy
- scipy
- fastcluster
- pymzml
- pymzml <=2.0.0
- h5py
- pythonnet

Expand Down