Unverified Commit 8b45dd86 authored by Maximilian Bosch's avatar Maximilian Bosch
Browse files

mailmanPackages: remove psycopg2 pin

This hack was necessary for django 2.x[1] which was the default `django`
version (i.e. current LTS) when this fix was needed. However, 2.x is now
EOL and not packaged anymore and mailman is running with django3, so
this can be dropped.

[1] https://github.com/psycopg/psycopg2/issues/1293
parent 2cefe69f
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -7,15 +7,6 @@ python3.override {
      alembic = super.alembic.overridePythonAttrs (oldAttrs: {
        doCheck = false;
      });
      # Fixes `AssertionError: database connection isn't set to UTC`
      psycopg2 = super.psycopg2.overridePythonAttrs (a: (rec {
        version = "2.8.6";
        src = super.fetchPypi {
          inherit version;
          inherit (a) pname;
          sha256 = "fb23f6c71107c37fd667cb4ea363ddeb936b348bbd6449278eb92c189699f543";
        };
      }));
    })
    overlay;
}