Skip to content

Commit

Permalink
Merge pull request #28835 from jaimergp/conda-spawn
Browse files Browse the repository at this point in the history
Add recipe for conda-spawn
  • Loading branch information
ocefpaf authored Jan 15, 2025
2 parents eea01e9 + c6190c2 commit bb9a141
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions recipes/conda-spawn/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{% set name = "conda-spawn" %}
{% set version = "0.0.1" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: d08f50bcc0a45cc27b0502901db3596c06678eabade99d673e81dc3c701a5126

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

requirements:
host:
- python {{ python_min }}
- pip
- hatchling >=1.12.2
- hatch-vcs >=0.2.0
run:
- python >={{ python_min }}
- conda >=23.9.0
- pexpect
- shellingham

test:
requires:
- python {{ python_min }}
imports:
- conda_spawn
- conda_spawn.main
commands:
- python -m conda spawn --help

about:
home: https://github.com/conda-incubator/conda-spawn
license: MIT
license_file: LICENSE
summary: Activate conda environments in new shell processes
dev_url: https://github.com/conda-incubator/conda-spawn

extra:
recipe-maintainers:
- jaimergp

0 comments on commit bb9a141

Please sign in to comment.