+certifi.io/python-certifi (#5210)

* new file:   projects/certifi.io/python-certifi/package.yml

* ~3.11 & remove symlinking

* change python libs path in test
This commit is contained in:
Andrew 2024-02-15 18:24:55 +02:00 committed by GitHub
parent 66ea691626
commit 1c14803615
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,30 @@
distributable: ~
versions:
url: https://pypi.org/rss/project/certifi/releases.xml
match: /<title>\d+\.\d+\.\d+<\/title>/
strip:
- /^<title>/
- /<\/title>$/
dependencies:
python.org: ~3.11
runtime:
env:
PYTHONPATH: ${{prefix}}/lib/python{{deps.python.org.version.marketing}}/site-packages:$PYTHONPATH
build:
dependencies:
curl.se: '*'
script:
- curl -L 'https://pypi.org/project/certifi/{{version.raw}}/#files' > page.html
- cat page.html | grep -o 'https://files.pythonhosted.org/packages/[^"]*certifi-{{version.raw}}.tar.gz' > url.txt
- curl -L $(cat url.txt) | tar -xz --strip-components=1
- python -m pip install --prefix={{prefix}} .
test:
- python -c 'import certifi;'
- python -m certifi | grep '{{prefix}}/lib/python{{deps.python.org.version.marketing}}/site-packages/certifi/cacert.pem'
- python -m certifi -h | grep 'usage'