From 809c139571872ec86de5cf62adefc7e12447875e Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Sun, 17 Nov 2024 22:12:07 -0500 Subject: [PATCH 1/3] add-partialjson --- recipes/partialjson/meta.yaml | 43 +++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 recipes/partialjson/meta.yaml diff --git a/recipes/partialjson/meta.yaml b/recipes/partialjson/meta.yaml new file mode 100644 index 0000000000000..8c4df7918b0c3 --- /dev/null +++ b/recipes/partialjson/meta.yaml @@ -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 + - pip + run: + - python + +test: + imports: + - partialjson + requires: + - 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 + From 94512961f3dcc47bb851d50b5cf9a6a98378a298 Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Sun, 17 Nov 2024 22:15:02 -0500 Subject: [PATCH 2/3] Update meta.yaml --- recipes/partialjson/meta.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/partialjson/meta.yaml b/recipes/partialjson/meta.yaml index 8c4df7918b0c3..6259a803336bf 100644 --- a/recipes/partialjson/meta.yaml +++ b/recipes/partialjson/meta.yaml @@ -16,10 +16,10 @@ build: requirements: host: - - python + - python 3.6 - pip run: - - python + - python >=3.6 test: imports: From 2ed6e335dc188a3fca8f688caac47436a6f3edea Mon Sep 17 00:00:00 2001 From: Ray Bell Date: Sun, 24 Nov 2024 09:39:14 -0500 Subject: [PATCH 3/3] add setuptools --- recipes/partialjson/meta.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes/partialjson/meta.yaml b/recipes/partialjson/meta.yaml index 6259a803336bf..bde5749dbfbd9 100644 --- a/recipes/partialjson/meta.yaml +++ b/recipes/partialjson/meta.yaml @@ -18,6 +18,7 @@ requirements: host: - python 3.6 - pip + - setuptools run: - python >=3.6 @@ -25,6 +26,7 @@ test: imports: - partialjson requires: + - python 3.6 - pip commands: - pip check