pythonPackages.psycopg2: document pypy incompatibility

This commit is contained in:
Bernardo Meurer 2020-11-18 00:58:42 -08:00 committed by Frederik Rietdijk
parent 74eb38ffd5
commit 96a4eba4ce

View file

@ -4,6 +4,8 @@ buildPythonPackage rec {
pname = "psycopg2";
version = "2.8.6";
# Extension modules don't work well with PyPy. Use psycopg2cffi instead.
# c.f. https://github.com/NixOS/nixpkgs/pull/104151#issuecomment-729750892
disabled = isPyPy;
src = fetchPypi {