python.pkgs.envs: fix build
This commit is contained in:
parent
19aaebe419
commit
76bfc09ff3
|
@ -1,5 +1,6 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi
|
||||||
, click, jinja2, terminaltables }:
|
, mock, jinja2, click, terminaltables
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "envs";
|
pname = "envs";
|
||||||
|
@ -10,7 +11,7 @@ buildPythonPackage rec {
|
||||||
sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
|
sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ click jinja2 terminaltables ];
|
checkInputs = [ mock jinja2 click terminaltables ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Easy access to environment variables from Python";
|
description = "Easy access to environment variables from Python";
|
||||||
|
|
Loading…
Reference in New Issue