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-partialjson #28255

Merged
merged 5 commits into from
Nov 24, 2024
Merged
Changes from 3 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
43 changes: 43 additions & 0 deletions recipes/partialjson/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{% set name = "partialjson" %}
{% set version = "0.0.8" %}

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

source:
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 91217e19a15049332df534477f56420065ad1729cedee7d8c7433e1d2acc7dca

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

requirements:
host:
- python 3.6
- pip
raybellwaves marked this conversation as resolved.
Show resolved Hide resolved
run:
- python >=3.6

test:
imports:
- partialjson
requires:
raybellwaves marked this conversation as resolved.
Show resolved Hide resolved
- pip
commands:
- pip check

about:
home: https://github.com/iw4p/partialjson
summary: Parse incomplete or partial json
description: Parse incomplete or partial json
license: MIT
license_file: LICENSE
dev_url: https://github.com/iw4p/partialjson

extra:
recipe-maintainers:
- raybellwaves