nixpkgs/pkgs/development/python-modules/envs/default.nix

22 lines
549 B
Nix
Raw Normal View History

2018-06-07 09:32:40 +00:00
{ lib, buildPythonPackage, fetchPypi
2018-04-09 16:08:15 +00:00
, click, jinja2, terminaltables }:
buildPythonPackage rec {
pname = "envs";
2018-06-07 09:32:40 +00:00
version = "1.2.6";
2018-04-09 16:08:15 +00:00
2018-06-07 09:32:40 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "5fe059d6df1ae01c422d32b10ec7f539baad0e7d339f4c8b2de4ad8cbb07c8ba";
2018-04-09 16:08:15 +00:00
};
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 ];
};
}