{ lib , buildPythonPackage , click , fetchPypi , ipython , mock , pytestCheckHook , pythonOlder , sh }: buildPythonPackage rec { pname = "python-dotenv"; version = "0.19.2"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; sha256 = "a5de49a31e953b45ff2d2fd434bbc2670e8db5273606c1e737cc6b93eff3655f"; }; propagatedBuildInputs = [ click ]; checkInputs = [ ipython mock pytestCheckHook sh ]; disabledTests = [ "cli" ]; pythonImportsCheck = [ "dotenv" ]; 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 ]; }; }