blob: 535d58217fd0748465eaa6b27f33302afc08a768 (
plain)
1 # Description: Add .env support to your django/flask apps in development and deployments
2 # URL: https://pypi.org/project/python-dotenv/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: python3-setuptools
5
6 name=python3-dotenv
7 version=0.15.0
8 release=1
9 source=(https://files.pythonhosted.org/packages/53/04/1a8126516c8febfeb2015844edee977c9b783bdff9b3bcd89b1cc2e1f372/python-dotenv-$version.tar.gz)
10
11 build() {
12 cd python-dotenv-$version
13 python3 setup.py build
14 python3 setup.py install --root=$PKG
15 }
|