mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
43 lines
979 B
Nix
43 lines
979 B
Nix
{ lib, fetchFromGitHub, python3
|
|
, libsepol, libselinux, checkpolicy
|
|
, withGraphics ? false
|
|
}:
|
|
|
|
with lib;
|
|
with python3.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "setools";
|
|
version = "4.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SELinuxProject";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-/6dOzSz2Do4d6TSS50fuak0CysoQ532zJ0bJ532BUCE=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cython ];
|
|
buildInputs = [ libsepol ];
|
|
propagatedBuildInputs = [ enum34 libselinux networkx setuptools ]
|
|
++ optionals withGraphics [ pyqt5 ];
|
|
|
|
nativeCheckInputs = [ tox checkpolicy ];
|
|
preCheck = ''
|
|
export CHECKPOLICY=${checkpolicy}/bin/checkpolicy
|
|
'';
|
|
|
|
setupPyBuildFlags = [ "-i" ];
|
|
|
|
preBuild = ''
|
|
export SEPOL="${lib.getLib libsepol}/lib/libsepol.a"
|
|
'';
|
|
|
|
meta = {
|
|
description = "SELinux Policy Analysis Tools";
|
|
homepage = "https://github.com/SELinuxProject/setools";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|