Merge pull request #58657 from dtzWill/update/salt-peper-2019-03

salt: 2018.3 -> 2019.2, pepper: 0.5.5 -> 0.7.5
This commit is contained in:
Will Dietz 2019-04-22 17:28:35 -05:00 committed by GitHub
commit 39278d93a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +1,20 @@
{ lib
, fetchurl
, python2Packages
, pythonPackages
, salt
}:
python2Packages.buildPythonApplication rec {
name = "salt-pepper-${version}";
version = "0.5.5";
src = fetchurl {
url = "https://github.com/saltstack/pepper/releases/download/${version}/${name}.tar.gz";
sha256 = "1wj1k64ly6af6qsmiizlx32jxh23a37smd9wb57l5zl0x8sfqq1n";
pythonPackages.buildPythonApplication rec {
pname = "salt-pepper";
version = "0.7.5";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
};
doCheck = false; # no tests available
buildInputs = with pythonPackages; [ setuptools setuptools_scm salt ];
checkInputs = with pythonPackages; [
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
];
meta = with lib; {
description = "A CLI front-end to a running salt-api system";