aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/tools/admin/salt/pepper/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/admin/salt/pepper/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/admin/salt/pepper/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/nixpkgs/pkgs/tools/admin/salt/pepper/default.nix b/nixpkgs/pkgs/tools/admin/salt/pepper/default.nix
index e2cfa806f95..0c6e9dc0ab2 100644
--- a/nixpkgs/pkgs/tools/admin/salt/pepper/default.nix
+++ b/nixpkgs/pkgs/tools/admin/salt/pepper/default.nix
@@ -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'
};
}