pepper: python2Packages -> pythonPackages (python3 should work)

This commit is contained in:
Will Dietz 2019-04-17 14:09:16 -05:00
parent 8b185aa31b
commit 5f20227855

View File

@ -1,18 +1,18 @@
{ lib
, python2Packages
, pythonPackages
, salt
}:
python2Packages.buildPythonApplication rec {
pythonPackages.buildPythonApplication rec {
pname = "salt-pepper";
version = "0.7.5";
src = python2Packages.fetchPypi {
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
};
buildInputs = with python2Packages; [ setuptools setuptools_scm salt ];
checkInputs = with python2Packages; [
buildInputs = with pythonPackages; [ setuptools setuptools_scm salt ];
checkInputs = with pythonPackages; [
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
];