mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
pepper: python2Packages -> pythonPackages (python3 should work)
This commit is contained in:
parent
8b185aa31b
commit
5f20227855
@ -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
|
||||
];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user