2018-06-07 02:32:40 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2019-03-21 04:27:03 -07:00
|
|
|
, mock, jinja2, click, terminaltables
|
|
|
|
}:
|
2018-04-09 09:08:15 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "envs";
|
2019-02-13 23:37:15 -08:00
|
|
|
version = "1.3";
|
2018-04-09 09:08:15 -07:00
|
|
|
|
2018-06-07 02:32:40 -07:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-02-13 23:37:15 -08:00
|
|
|
sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
|
2018-04-09 09:08:15 -07:00
|
|
|
};
|
|
|
|
|
2019-03-21 04:27:03 -07:00
|
|
|
checkInputs = [ mock jinja2 click terminaltables ];
|
2018-04-09 09:08:15 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Easy access to environment variables from Python";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/capless/envs";
|
2018-04-09 09:08:15 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
};
|
|
|
|
}
|