pythonPackages.python-dotenv: init at 0.10.1

This commit is contained in:
Erik Arvstedt 2019-01-27 15:26:25 +01:00
parent 72aec3e01c
commit 5e3e440a60
No known key found for this signature in database
GPG key ID: 33312B944DD97846
2 changed files with 22 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };