mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
pepper: 0.5.5 -> 0.7.5
This commit is contained in:
parent
a5a9454749
commit
8b185aa31b
@ -1,17 +1,20 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, fetchurl
|
|
||||||
, python2Packages
|
, python2Packages
|
||||||
|
, salt
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "salt-pepper-${version}";
|
pname = "salt-pepper";
|
||||||
version = "0.5.5";
|
version = "0.7.5";
|
||||||
src = fetchurl {
|
src = python2Packages.fetchPypi {
|
||||||
url = "https://github.com/saltstack/pepper/releases/download/${version}/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "1wj1k64ly6af6qsmiizlx32jxh23a37smd9wb57l5zl0x8sfqq1n";
|
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false; # no tests available
|
buildInputs = with python2Packages; [ setuptools setuptools_scm salt ];
|
||||||
|
checkInputs = with python2Packages; [
|
||||||
|
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A CLI front-end to a running salt-api system";
|
description = "A CLI front-end to a running salt-api system";
|
||||||
|
Loading…
Reference in New Issue
Block a user