Merge pull request #25910 from aneeshusa/update-salt-to-2016.11.5
salt: 2016.11.4 -> 2016.11.5
This commit is contained in:
commit
b321fdf8eb
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
stdenv, fetchurl, python2Packages, openssl,
|
stdenv, python2Packages, openssl,
|
||||||
|
|
||||||
# Many Salt modules require various Python modules to be installed,
|
# Many Salt modules require various Python modules to be installed,
|
||||||
# passing them in this array enables Salt to find them.
|
# passing them in this array enables Salt to find them.
|
||||||
@ -7,12 +7,13 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "salt-${version}";
|
pname = "salt";
|
||||||
version = "2016.11.4";
|
version = "2016.11.5";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = python2Packages.fetchPypi {
|
||||||
url = "mirror://pypi/s/salt/${name}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0pvn0pkndwx81xkpah14awz4rg9zhkpl4bhn3hlrin1zinr0jhgv";
|
sha256 = "1gpq6s87vy782z4b5h6s7zwndcxnllbdr2wldxr9hyp4lfj2f55q";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python2Packages; [
|
propagatedBuildInputs = with python2Packages; [
|
||||||
|
Loading…
Reference in New Issue
Block a user