pepper: python2Packages -> pythonPackages (python3 should work)
This commit is contained in:
parent
8b185aa31b
commit
5f20227855
@ -1,18 +1,18 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, python2Packages
|
, pythonPackages
|
||||||
, salt
|
, salt
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python2Packages.buildPythonApplication rec {
|
pythonPackages.buildPythonApplication rec {
|
||||||
pname = "salt-pepper";
|
pname = "salt-pepper";
|
||||||
version = "0.7.5";
|
version = "0.7.5";
|
||||||
src = python2Packages.fetchPypi {
|
src = pythonPackages.fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
|
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with python2Packages; [ setuptools setuptools_scm salt ];
|
buildInputs = with pythonPackages; [ setuptools setuptools_scm salt ];
|
||||||
checkInputs = with python2Packages; [
|
checkInputs = with pythonPackages; [
|
||||||
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
|
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user