2020-06-04 10:53:39 -05:00
|
|
|
# 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
|
2021-04-07 13:28:47 -05:00
|
|
|
version=0.17.0
|
2020-06-04 10:53:39 -05:00
|
|
|
release=1
|
2021-03-29 20:13:37 -05:00
|
|
|
source=(https://pypi.python.org/packages/source/p/python-dotenv/python-dotenv-$version.tar.gz)
|
2020-06-04 10:53:39 -05:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd python-dotenv-$version
|
|
|
|
python3 setup.py build
|
|
|
|
python3 setup.py install --root=$PKG
|
|
|
|
}
|