{% set version = "1.0.1" %}
{% set pkg_name = "patsy" %}


package:
  name: {{ pkg_name }}
  version: {{ version }}

source:
  url: https://pypi.io/packages/source/{{ pkg_name[0] }}/{{ pkg_name }}/{{ pkg_name }}-{{ version }}.tar.gz
  sha256: e786a9391eec818c054e359b737bbce692f051aee4c661f4141cc88fb459c0c4

build:
  number: 0
  script: {{ PYTHON }} -m pip install . --no-deps --no-build-isolation

requirements:
  host:
    - python
    - pip
    - setuptools
    - wheel
  run:
    - python
    - numpy >=1.4

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

about:
  home: https://github.com/pydata/patsy
  license: BSD-2-Clause AND PSF-2.0
  license_family: BSD
  license_file: LICENSE.txt
  summary: Describing statistical models in Python using symbolic formulas
  description: |
    Patsy is a Python library for describing statistical models (especially
    linear models, or models that have a linear component) and building design
    matrices.
  doc_url: https://patsy.readthedocs.io
  dev_url: https://github.com/pydata/patsy

extra:
  recipe-maintainers:
    - bollwyvl
    - croth1
