Skip to content

Commit

Permalink
python312Packages.psycopg2: 2.9.9 -> 2.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
CountingBeeps committed Dec 14, 2024
1 parent 0eb02a7 commit 040cbad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/psycopg2/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@

buildPythonPackage rec {
pname = "psycopg2";
version = "2.9.9";
version = "2.9.10";
format = "setuptools";

# Extension modules don't work well with PyPy. Use psycopg2cffi instead.
# c.f. https://github.com/NixOS/nixpkgs/pull/104151#issuecomment-729750892
disabled = pythonOlder "3.6" || isPyPy;
disabled = pythonOlder "3.7" || isPyPy;

outputs = [
"out"
Expand All @@ -29,7 +29,7 @@ buildPythonPackage rec {

src = fetchPypi {
inherit pname version;
hash = "sha256-0UVL3pP7HiJBZoEWlNYA50ZDDABvuwMeoG7MLqQb8VY=";
hash = "sha256-EuwLQLAnP5UpYjPodQRBM5KY5qVy9wOdpbJg48i2DhE=";
};

postPatch = ''
Expand Down

0 comments on commit 040cbad

Please sign in to comment.