Set DEBUG=True with dotenv
This commit is contained in:
parent
ef3cab912e
commit
b522b7470f
5 changed files with 27 additions and 4 deletions
|
|
@ -988,6 +988,23 @@ let
|
|||
};
|
||||
};
|
||||
|
||||
"python-dotenv" = python.mkDerivation {
|
||||
name = "python-dotenv-0.12.0";
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://files.pythonhosted.org/packages/81/8b/26f807fa58582455f8ebb07f1b7473ee1a21b4671d1eaf4fecece9337e2a/python-dotenv-0.12.0.tar.gz";
|
||||
sha256 = "92b3123fb2d58a284f76cc92bfe4ee6c502c32ded73e8b051c4f6afc8b6751ed";
|
||||
};
|
||||
doCheck = commonDoCheck;
|
||||
format = "pyproject";
|
||||
buildInputs = commonBuildInputs ++ [ ];
|
||||
propagatedBuildInputs = [ ];
|
||||
meta = with pkgs.stdenv.lib; {
|
||||
homepage = "http://github.com/theskumar/python-dotenv";
|
||||
license = licenses.bsdOriginal;
|
||||
description = "Add .env support to your django/flask apps in development and deployments";
|
||||
};
|
||||
};
|
||||
|
||||
"pytz" = python.mkDerivation {
|
||||
name = "pytz-2019.3";
|
||||
src = pkgs.fetchurl {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue