summary refs log tree commit diff
path: root/pkgs/development/python-modules/envs/default.nix
blob: 43446b407af60c2c6b32f32ad980f6e4fd5b6910 (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.2.6";

  src = fetchPypi {
    inherit pname version;
    sha256 = "5fe059d6df1ae01c422d32b10ec7f539baad0e7d339f4c8b2de4ad8cbb07c8ba";
  };

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