libsemanage: fix python native library filename

We need Python in this build to install one of the build outputs with
the correct filename.

+11 -5
+11 -5
pkgs/os-specific/linux/libsemanage/default.nix
··· 32 32 33 33 strictDeps = true; 34 34 35 - nativeBuildInputs = [ 36 - bison 37 - flex 38 - pkg-config 39 - ] ++ lib.optional enablePython swig; 35 + nativeBuildInputs = 36 + [ 37 + bison 38 + flex 39 + pkg-config 40 + ] 41 + ++ lib.optionals enablePython [ 42 + python 43 + swig 44 + ]; 45 + 40 46 buildInputs = [ 41 47 libsepol 42 48 libselinux