forked from ports/contrib
16 lines
514 B
Plaintext
16 lines
514 B
Plaintext
# Description: Add .env support to your django/flask apps in development and deployments
|
|
# URL: https://pypi.org/project/python-dotenv/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-dotenv
|
|
version=0.14.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/33/3d/a0c00002bae69321f5b87ea7ed123ddf1933e09d3ff658d277889698ee59/python-dotenv-$version.tar.gz)
|
|
|
|
build() {
|
|
cd python-dotenv-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|