mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
pepper: use latest tornado, mark as broken
Missing dependency.
This commit is contained in:
parent
5b907a4d55
commit
58fd044ad0
@ -1,19 +1,19 @@
|
||||
{ lib
|
||||
, pythonPackages
|
||||
, python3Packages
|
||||
, salt
|
||||
}:
|
||||
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "salt-pepper";
|
||||
version = "0.7.5";
|
||||
src = pythonPackages.fetchPypi {
|
||||
src = python3Packages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1wh6yidwdk8jvjpr5g3azhqgsk24c5rlzmw6l86dmi0mpvmxm94w";
|
||||
};
|
||||
|
||||
buildInputs = with pythonPackages; [ setuptools setuptools_scm salt ];
|
||||
checkInputs = with pythonPackages; [
|
||||
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado_4
|
||||
buildInputs = with python3Packages; [ setuptools setuptools_scm salt ];
|
||||
checkInputs = with python3Packages; [
|
||||
pytest mock pyzmq pytest-rerunfailures pytestcov cherrypy tornado
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
@ -21,5 +21,6 @@ pythonPackages.buildPythonApplication rec {
|
||||
homepage = "https://github.com/saltstack/pepper";
|
||||
maintainers = [ maintainers.pierrer ];
|
||||
license = licenses.asl20;
|
||||
broken = true; # ModuleNotFoundError: No module named 'pytestsalt'
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user