mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
21 lines
571 B
Nix
21 lines
571 B
Nix
{ lib, buildPythonPackage, fetchPypi, click, ipython }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-dotenv";
|
|
version = "0.10.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "6640acd76e6cab84648e4fec16c9d19de6700971f9d91d045e7120622167bfda";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|