1{ lib
2, buildPythonPackage
3, isPy3k
4, fetchPypi
5, colored
6, boto
7, pkgs
8}:
9
10buildPythonPackage rec {
11 pname = "lsi";
12 version = "0.4.0";
13 disabled = isPy3k;
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "b2c4a9a276a32f914a6193509503c28b3cc84bf42d58e191214811cfe78f4736";
18 };
19
20 propagatedBuildInputs = [ colored boto pkgs.openssh pkgs.which ];
21
22 meta = with lib; {
23 description = "CLI for querying and SSHing onto AWS EC2 instances";
24 homepage = "https://github.com/NarrativeScience/lsi";
25 maintainers = [maintainers.adnelson];
26 license = licenses.mit;
27 };
28
29}