58fd044ad0
Missing dependency.
26 lines
746 B
Nix
26 lines
746 B
Nix
{ lib
|
|
, python3Packages
|
|
, salt
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "salt-pepper";
|
|
version = "0.7.5";
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
|
|
};
|
|
|
|
buildInputs = with python3Packages; [ setuptools setuptools_scm salt ];
|
|
checkInputs = with python3Packages; [
|
|
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado
|
|
];
|
|
|
|
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;
|
|
broken = true; # ModuleNotFoundError: No module named 'pytestsalt'
|
|
};
|
|
}
|