mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
salt: use Python 2
This commit is contained in:
parent
365762fcb5
commit
1d9a98cae0
@ -1,23 +1,21 @@
|
|||||||
{
|
{
|
||||||
stdenv, fetchurl, pythonPackages, openssl,
|
stdenv, fetchurl, 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.
|
||||||
extraInputs ? []
|
extraInputs ? []
|
||||||
}:
|
}:
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python2Packages.buildPythonApplication rec {
|
||||||
name = "salt-${version}";
|
name = "salt-${version}";
|
||||||
version = "2016.3.3";
|
version = "2016.3.3";
|
||||||
|
|
||||||
disabled = pythonPackages.isPy3k;
|
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://pypi/s/salt/${name}.tar.gz";
|
url = "mirror://pypi/s/salt/${name}.tar.gz";
|
||||||
sha256 = "1djjglnh6203y8dirziz5w6zh2lgszxp8ivi86nb7fgijj2h61jr";
|
sha256 = "1djjglnh6203y8dirziz5w6zh2lgszxp8ivi86nb7fgijj2h61jr";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = with python2Packages; [
|
||||||
futures
|
futures
|
||||||
jinja2
|
jinja2
|
||||||
markupsafe
|
markupsafe
|
||||||
|
Loading…
Reference in New Issue
Block a user