Skip to content

Commit

Permalink
Corrected build from conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
bwingconda committed Sep 9, 2024
1 parent e8b3f1e commit 75dbecc
Showing 1 changed file with 16 additions and 9 deletions.
25 changes: 16 additions & 9 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{% set name = "pyuca" %}
{% set version = "1.2" %}
{% set hash_type = "sha256" %}
{% set hash = "8a382fe74627f08c0d18908c0713ca4a20aad5385f077579e56208beea2893b2" %}

package:
name: {{ name }}
Expand All @@ -10,32 +8,41 @@ package:
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash }}
sha256: 8a382fe74627f08c0d18908c0713ca4a20aad5385f077579e56208beea2893b2

build:
noarch: python
number: 1
script: python -m pip install --no-deps --ignore-installed .
number: 0
script: python -m pip install --no-deps --ignore-installed --no-build-isolation .

requirements:
host:
- pip
- python
- setuptools

- wheel
run:
- python

test:
imports:
- pyuca
requires:
- pip
commands:
- pip check

about:
home: https://pypi.org/project/pyuca
license: MIT
# license file currently not on sdist, see https://github.com/jtauber/pyuca/pull/9
#license_file: LICENSE
license_family: MIT
license_file: LICENSE
summary: a Python implementation of the Unicode Collation Algorithm
description: |
This is a Python implementation of the Unicode Collation Algorithm (UCA). It passes 100% of the UCA conformance
tests for Unicode 5.2.0 (Python 2.7), Unicode 6.3.0 (Python 3.3+), Unicode 8.0.0 (Python 3.5+), Unicode 9.0.0
(Python 3.6+), and Unicode 10.0.0 (Python 3.7+) with a variable-weighting setting of Non-ignorable.
# No documentation exists for this package from the upstream source.
# doc_url: None
dev_url: https://github.com/jtauber/pyuca

extra:
Expand Down

0 comments on commit 75dbecc

Please sign in to comment.