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

Added httpdbg as a package #27807

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
45 changes: 45 additions & 0 deletions recipes/httpdbg/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{% set name = "httpdbg" %}
{% set version = "0.23.0" %}

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

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

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

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

test:
imports:
- httpdbg
commands:
- pip check
- pyhttpdbg --help
requires:
- pip

about:
home: https://github.com/cle-b/httpdbg/
summary: A tool for Python developers to easily debug the HTTP(S) client requests in a Python program.
license: Apache-2.0
license_file: LICENSE

extra:
recipe-maintainers:
- thewchan