xin/pkgs/python-dotenv.nix

30 lines
772 B
Nix
Raw Normal View History

2023-05-03 19:23:11 -06:00
{ lib, buildPythonPackage, click, fetchPypi, ipython, mock, pytestCheckHook
, pythonOlder, sh }:
buildPythonPackage rec {
pname = "python-dotenv";
version = "0.21.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-t30IJ0Y549NBRd+mxwCOZt8PBLe+enX9DVKSwZHXkEU=";
};
propagatedBuildInputs = [ click ];
2023-05-03 19:23:11 -06:00
nativeCheckInputs = [ ipython mock pytestCheckHook sh ];
2023-05-03 19:23:11 -06:00
disabledTests = [ "cli" ];
pythonImportsCheck = [ "dotenv" ];
meta = with lib; {
2023-05-03 19:23:11 -06:00
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; [ erikarvstedt ];
};
}