Merge pull request #23640 from PierreR/master

pythonPackages.pepper: init at 0.5.0
This commit is contained in:
Jörg Thalheim 2017-03-09 12:05:24 +01:00 committed by GitHub
commit eb8b6022ed
3 changed files with 25 additions and 0 deletions

View File

@ -383,6 +383,7 @@
Phlogistique = "Noé Rubinstein <noe.rubinstein@gmail.com>";
phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>";
phunehehe = "Hoang Xuan Phu <phunehehe@gmail.com>";
pierrer = "Pierre Radermecker <pierrer@pi3r.be>";
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>";
pjbarnoy = "Perry Barnoy <pjbarnoy@gmail.com>";

View File

@ -0,0 +1,22 @@
{ lib
, fetchurl
, python2Packages
}:
python2Packages.buildPythonApplication rec {
name = "salt-pepper-${version}";
version = "0.5.0";
src = fetchurl {
url = "https://github.com/saltstack/pepper/releases/download/${version}/${name}.tar.gz";
sha256 = "0gf4v5y1kp16i1na4c9qw7cgrpsh21p8ldv9r6b8gdwcxzadxbck";
};
doCheck = false; # no tests available
meta = with lib; {
description = "A CLI front-end to a running salt-api system";
homepage = https://github.com/saltstack/pepper;
maintainers = [ maintainers.pierrer ];
license = licenses.asl20;
};
}

View File

@ -3314,6 +3314,8 @@ with pkgs;
pell = callPackage ../applications/misc/pell { };
pepper = callPackage ../tools/admin/salt/pepper { };
pick = callPackage ../tools/misc/pick { };
pitivi = callPackage ../applications/video/pitivi {