summary refs log tree commit diff
path: root/pkgs/development/python-modules/envs/default.nix
blob: e39292049da08aaec8797ab2371babda6a6e622a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi
, click, jinja2, terminaltables }:

buildPythonPackage rec {
  pname = "envs";
  version = "1.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ccf5cd85ddb8ed335e39ed8a22e0d23658f5a6d7da430f225e6f750c6f50ae42";
  };

  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 ];
  };
}