python310Packages.psycopg2: 2.9.3 -> 2.9.5

This commit is contained in:
Fabian Affolter
2022-10-27 18:58:02 +02:00
parent d503bd15d4
commit e3a905b73f
@@ -12,8 +12,8 @@
buildPythonPackage rec {
pname = "psycopg2";
version = "2.9.3";
outputs = [ "out" "doc" ];
version = "2.9.5";
format = "setuptools";
# Extension modules don't work well with PyPy. Use psycopg2cffi instead.
# c.f. https://github.com/NixOS/nixpkgs/pull/104151#issuecomment-729750892
@@ -21,9 +21,11 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
sha256 = "8e841d1bf3434da985cc5ef13e6f75c8981ced601fd70cc6bf33351b91562981";
sha256 = "sha256-pSRtLmg6ly4hh6hxS1ws+BVsBkYp+amxqHPBcw2eJFo=";
};
outputs = [ "out" "doc" ];
nativeBuildInputs = [
postgresql
sphinxHook
@@ -36,15 +38,17 @@ buildPythonPackage rec {
sphinxRoot = "doc/src";
# requires setting up a postgresql database
# Requires setting up a PostgreSQL database
doCheck = false;
pythonImportsCheck = [ "psycopg2" ];
pythonImportsCheck = [
"psycopg2"
];
meta = with lib; {
description = "PostgreSQL database adapter for the Python programming language";
homepage = "https://www.psycopg.org";
license = with licenses; [ lgpl3 zpl20 ];
license = with licenses; [ lgpl3Plus zpl20 ];
maintainers = with maintainers; [ ];
};
}