pythonPackages.envs: init at 1.2.4

This commit is contained in:
Peter Hoeg 2018-04-10 00:08:15 +08:00 committed by Robert Schütz
parent 908657ab53
commit 764d03decc
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, buildPythonPackage, fetchFromGitHub
, click, jinja2, terminaltables }:
buildPythonPackage rec {
pname = "envs";
version = "1.2.4";
# move to fetchPyPi when https://github.com/capless/envs/issues/8 is fixed
src = fetchFromGitHub {
owner = "capless";
repo = "envs";
rev = "e1f6cbad7f20316fc44324d2c50826d57c2817a8";
sha256 = "0p88a79amj0jxll3ssq1dzg78y7zwgc8yqyr7cf53nv2i7kmpakv";
};
checkInputs = [ click jinja2 terminaltables ];
meta = with lib; {
description = "Easy access to environment variables from Python";
homepage = https://github.com/capless/envs;
license = licenses.asl20;
maintainers = with maintainers; [ peterhoeg ];
};
}

View File

@ -1646,6 +1646,8 @@ in {
curtsies = callPackage ../development/python-modules/curtsies { };
envs = callPackage ../development/python-modules/envs { };
jsonrpc-async = callPackage ../development/python-modules/jsonrpc-async { };
jsonrpc-base = callPackage ../development/python-modules/jsonrpc-base { };