ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-dotenv / default.nix
blob85e5034d6ebcee1b8213059a8a572b0d320b7818
1 { lib
2 , buildPythonPackage
3 , click
4 , fetchPypi
5 , ipython
6 , mock
7 , pytestCheckHook
8 , pythonOlder
9 , sh
12 buildPythonPackage rec {
13   pname = "python-dotenv";
14   version = "0.21.0";
15   disabled = pythonOlder "3.5";
17   src = fetchPypi {
18     inherit pname version;
19     sha256 = "sha256-t30IJ0Y549NBRd+mxwCOZt8PBLe+enX9DVKSwZHXkEU=";
20   };
22   propagatedBuildInputs = [ click ];
24   checkInputs = [
25     ipython
26     mock
27     pytestCheckHook
28     sh
29   ];
31   disabledTests = [
32     "cli"
33   ];
35   pythonImportsCheck = [ "dotenv" ];
37   meta = with lib; {
38     description = "Add .env support to your django/flask apps in development and deployments";
39     homepage = "https://github.com/theskumar/python-dotenv";
40     license = licenses.bsdOriginal;
41     maintainers = with maintainers; [ erikarvstedt ];
42   };