pythonPackages.python-dotenv: init at 0.10.1
This commit is contained in:
parent
72aec3e01c
commit
5e3e440a60
20
pkgs/development/python-modules/python-dotenv/default.nix
Normal file
20
pkgs/development/python-modules/python-dotenv/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ lib, buildPythonPackage, fetchPypi, click, ipython }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-dotenv";
|
||||
version = "0.10.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1q4sp6ppjiqlsz3h43q9iya4n3qkhx6ng16bcbacfxdyrp9xvcf9";
|
||||
};
|
||||
|
||||
checkInputs = [ click ipython ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Add .env support to your django/flask apps in development and deployments";
|
||||
homepage = https://github.com/theskumar/python-dotenv;
|
||||
license = licenses.bsdOriginal;
|
||||
maintainers = with maintainers; [ earvstedt ];
|
||||
};
|
||||
}
|
@ -775,6 +775,8 @@ in {
|
||||
|
||||
python-dbusmock = callPackage ../development/python-modules/python-dbusmock { };
|
||||
|
||||
python-dotenv = callPackage ../development/python-modules/python-dotenv { };
|
||||
|
||||
python-engineio = callPackage ../development/python-modules/python-engineio { };
|
||||
|
||||
python-hosts = callPackage ../development/python-modules/python-hosts { };
|
||||
|
Loading…
Reference in New Issue
Block a user