pythonPackages.lsi: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
d1a48cc23e
commit
45bbac9091
29
pkgs/development/python-modules/lsi/default.nix
Normal file
29
pkgs/development/python-modules/lsi/default.nix
Normal file
@@ -0,0 +1,29 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, fetchPypi
|
||||
, colored
|
||||
, boto
|
||||
, pkgs
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lsi";
|
||||
version = "0.2.2";
|
||||
disabled = isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0429iilb06yhsmvj3xp6wyhfh1rp4ndxlhwrm80r97z0w7plrk94";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ colored boto pkgs.openssh pkgs.which ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "CLI for querying and SSHing onto AWS EC2 instances";
|
||||
homepage = https://github.com/NarrativeScience/lsi;
|
||||
maintainers = [maintainers.adnelson];
|
||||
license = licenses.mit;
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user