1{ lib, buildPythonPackage, fetchPypi
2, mock, jinja2, click, terminaltables
3}:
4
5buildPythonPackage rec {
6 pname = "envs";
7 version = "1.3";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
12 };
13
14 checkInputs = [ mock jinja2 click terminaltables ];
15
16 meta = with lib; {
17 description = "Easy access to environment variables from Python";
18 homepage = https://github.com/capless/envs;
19 license = licenses.asl20;
20 maintainers = with maintainers; [ peterhoeg ];
21 };
22}