Skip to content

Commit

Permalink
python.pkgs.envs: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Mar 21, 2019
1 parent 19aaebe commit 76bfc09
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/python-modules/envs/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{ lib, buildPythonPackage, fetchPypi
, click, jinja2, terminaltables }:
, mock, jinja2, click, terminaltables
}:

buildPythonPackage rec {
pname = "envs";
Expand All @@ -10,7 +11,7 @@ buildPythonPackage rec {
sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
};

checkInputs = [ click jinja2 terminaltables ];
checkInputs = [ mock jinja2 click terminaltables ];

meta = with lib; {
description = "Easy access to environment variables from Python";
Expand Down

0 comments on commit 76bfc09

Please sign in to comment.