ceph: hack-fix build

We surely don't need docs in the overridden pyopenssl.
https://hydra.nixos.org/build/287563868/nixlog/1/tail

+4
+4
pkgs/tools/filesystems/ceph/default.nix
··· 19 19 nasm, 20 20 pkg-config, 21 21 which, 22 + openssl, 22 23 23 24 # Tests 24 25 nixosTests, ··· 259 260 propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [ 260 261 self.flaky 261 262 ]; 263 + # hack: avoid building docs due to incompatibility with current sphinx 264 + nativeBuildInputs = [ openssl ]; # old.nativeBuildInputs but without sphinx* 265 + outputs = lib.filter (o: o != "doc") old.outputs; 262 266 }); 263 267 264 268 # This is the most recent version of `trustme` that's still compatible with `cryptography` 40.