Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Serapieum-of-alex/staged-recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Jan 2, 2024
2 parents aea30b4 + 476537f commit 1b44624
Show file tree
Hide file tree
Showing 2 changed files with 90 additions and 0 deletions.
45 changes: 45 additions & 0 deletions recipes/ustrid/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "ustrid" %}
{% set version = "0.0.2" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/ustrid-{{ version }}.tar.gz
sha256: c8d7176e998381a605cba6a3d82978888c604f10011542767a44eed527b551b3

build:
entry_points:
- ustrid = ustrid.__main__:main
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.5
- setuptools
- wheel
- pip
run:
- python >=3.5

test:
imports:
- ustrid
commands:
- pip check
- ustrid --help
requires:
- pip

about:
home: https://github.com/pyrustic/ustrid
summary: Uniquely generated string identifiers
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan
45 changes: 45 additions & 0 deletions recipes/written/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "written" %}
{% set version = "0.0.2" %}

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

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/written-{{ version }}.tar.gz
sha256: 4940777e7bcee20b8cb1ff006fda8d216f5b88bdecc3b37d85f6065f8b5522f5

build:
entry_points:
- written = written.__main__:main
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.5
- setuptools
- wheel
- pip
run:
- python >=3.5

test:
imports:
- written
commands:
- pip check
- written --help
requires:
- pip

about:
home: https://github.com/pyrustic/written
summary: Try to atomically write data to a file
license: MIT
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan

0 comments on commit 1b44624

Please sign in to comment.