summary refs log tree commit diff
path: root/pkgs/development/python-modules/lsi/default.nix
blob: b570a62d9e344a6ce68c0bd15a2acf8c2293ccec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, colored
, boto
, pkgs
}:

buildPythonPackage rec {
  pname = "lsi";
  version = "0.4.0";
  disabled = isPy3k;

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

  propagatedBuildInputs = [ colored boto pkgs.openssh pkgs.which ];

  meta = with lib; {
    description = "CLI for querying and SSHing onto AWS EC2 instances";
    homepage = "https://github.com/NarrativeScience/lsi";
    maintainers = [maintainers.adnelson];
    license = licenses.mit;
  };

}