python310Packages.psycopg2: add python imports check

main
Sandro Jäckel 2 years ago
parent e5e403219b
commit 9b8ef71d92
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 5
      pkgs/development/python-modules/psycopg2/default.nix

@ -34,14 +34,17 @@ buildPythonPackage rec {
openssl
];
sphinxRoot = "doc/src";
# requires setting up a postgresql database
doCheck = false;
sphinxRoot = "doc/src";
pythonImportsCheck = [ "psycopg2" ];
meta = with lib; {
description = "PostgreSQL database adapter for the Python programming language";
homepage = "https://www.psycopg.org";
license = with licenses; [ lgpl3 zpl20 ];
maintainers = with maintainers; [ ];
};
}

Loading…
Cancel
Save