Merge pull request #23640 from PierreR/master
pythonPackages.pepper: init at 0.5.0
This commit is contained in:
commit
eb8b6022ed
@ -383,6 +383,7 @@
|
|||||||
Phlogistique = "Noé Rubinstein <noe.rubinstein@gmail.com>";
|
Phlogistique = "Noé Rubinstein <noe.rubinstein@gmail.com>";
|
||||||
phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>";
|
phreedom = "Evgeny Egorochkin <phreedom@yandex.ru>";
|
||||||
phunehehe = "Hoang Xuan Phu <phunehehe@gmail.com>";
|
phunehehe = "Hoang Xuan Phu <phunehehe@gmail.com>";
|
||||||
|
pierrer = "Pierre Radermecker <pierrer@pi3r.be>";
|
||||||
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
|
pierron = "Nicolas B. Pierron <nixos@nbp.name>";
|
||||||
piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>";
|
piotr = "Piotr Pietraszkiewicz <ppietrasa@gmail.com>";
|
||||||
pjbarnoy = "Perry Barnoy <pjbarnoy@gmail.com>";
|
pjbarnoy = "Perry Barnoy <pjbarnoy@gmail.com>";
|
||||||
|
22
pkgs/tools/admin/salt/pepper/default.nix
Normal file
22
pkgs/tools/admin/salt/pepper/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -3314,6 +3314,8 @@ with pkgs;
|
|||||||
|
|
||||||
pell = callPackage ../applications/misc/pell { };
|
pell = callPackage ../applications/misc/pell { };
|
||||||
|
|
||||||
|
pepper = callPackage ../tools/admin/salt/pepper { };
|
||||||
|
|
||||||
pick = callPackage ../tools/misc/pick { };
|
pick = callPackage ../tools/misc/pick { };
|
||||||
|
|
||||||
pitivi = callPackage ../applications/video/pitivi {
|
pitivi = callPackage ../applications/video/pitivi {
|
||||||
|
Loading…
Reference in New Issue
Block a user