The multiprocessing tests don’t work on Darwin presumably because it uses the spawn start method instead of fork. Disable those tests to allow maxminddb to build on Darwin again.
···31 "maxminddb"
32 ];
33000034 meta = with lib; {
35 description = "Reader for the MaxMind DB format";
36 homepage = "https://github.com/maxmind/MaxMind-DB-Reader-python";
···31 "maxminddb"
32 ];
3334+ # The multiprocessing tests fail on Darwin because multiprocessing uses spawn instead of fork,
35+ # resulting in an exception when it can’t pickle the `lookup` local function.
36+ disabledTests = lib.optionals stdenv.isDarwin [ "multiprocessing" ];
37+38 meta = with lib; {
39 description = "Reader for the MaxMind DB format";
40 homepage = "https://github.com/maxmind/MaxMind-DB-Reader-python";