Add new package "lsi" (#12780)

authored by Allen Nelson and committed by Robin Gloster d7f032e8 3748cdc7

+34 -1
+1
lib/maintainers.nix
··· 14 adev = "Adrien Devresse <adev@adev.name>"; 15 Adjective-Object = "Maxwell Huang-Hobbs <mhuan13@gmail.com>"; 16 aespinosa = "Allan Espinosa <allan.espinosa@outlook.com>"; 17 aflatter = "Alexander Flatter <flatter@fastmail.fm>"; 18 aforemny = "Alexander Foremny <alexanderforemny@googlemail.com>"; 19 afranchuk = "Alex Franchuk <alex.franchuk@gmail.com>";
··· 14 adev = "Adrien Devresse <adev@adev.name>"; 15 Adjective-Object = "Maxwell Huang-Hobbs <mhuan13@gmail.com>"; 16 aespinosa = "Allan Espinosa <allan.espinosa@outlook.com>"; 17 + adnelson = "Allen Nelson <ithinkican@gmail.com>"; 18 aflatter = "Alexander Flatter <flatter@fastmail.fm>"; 19 aforemny = "Alexander Foremny <alexanderforemny@googlemail.com>"; 20 afranchuk = "Alex Franchuk <alex.franchuk@gmail.com>";
+33 -1
pkgs/top-level/python-packages.nix
··· 10441 }; 10442 }; 10443 10444 httpretty = buildPythonPackage rec { 10445 name = "httpretty-${version}"; 10446 version = "0.8.6"; ··· 20118 disabled = isPyPy || isPy26 || isPy27; 20119 20120 checkPhase = '' 20121 - ${python.interpreter} test/*.py 20122 ''; 20123 meta = { 20124 description = "Simple and extensible IRC bot";
··· 10441 }; 10442 }; 10443 10444 + colored = buildPythonPackage rec { 10445 + name = "colored-${version}"; 10446 + version = "1.1.5"; 10447 + src = pkgs.fetchurl { 10448 + url = "https://pypi.python.org/packages/source/c/colored/${name}.tar.gz"; 10449 + sha256 = "1r1vsypk8v7az82d66bidbxlndx1h7xd4m43hpg1a6hsjr30wrm3"; 10450 + }; 10451 + }; 10452 + 10453 + 10454 + lsi = buildPythonPackage rec { 10455 + name = "lsi-${version}"; 10456 + version = "0.2.2"; 10457 + disabled = isPy3k; 10458 + src = pkgs.fetchurl { 10459 + url = "https://pypi.python.org/packages/source/l/lsi/${name}.tar.gz"; 10460 + sha256 = "0429iilb06yhsmvj3xp6wyhfh1rp4ndxlhwrm80r97z0w7plrk94"; 10461 + }; 10462 + propagatedBuildInputs = [ 10463 + self.colored 10464 + self.boto 10465 + pkgs.openssh 10466 + pkgs.which 10467 + ]; 10468 + meta = { 10469 + description = "CLI for querying and SSHing onto AWS EC2 instances"; 10470 + homepage = https://github.com/NarrativeScience/lsi; 10471 + maintainers = [maintainers.adnelson]; 10472 + license = licenses.mit; 10473 + }; 10474 + }; 10475 + 10476 httpretty = buildPythonPackage rec { 10477 name = "httpretty-${version}"; 10478 version = "0.8.6"; ··· 20150 disabled = isPyPy || isPy26 || isPy27; 20151 20152 checkPhase = '' 20153 + ${python.interpreter} test/*.py #*/ 20154 ''; 20155 meta = { 20156 description = "Simple and extensible IRC bot";