python: psycopg2: 2.8.3 -> 2.8.4

This commit is contained in:
Frederik Rietdijk 2019-10-24 08:47:42 +02:00
parent 33274512d7
commit 2b55a6a89a
1 changed files with 2 additions and 2 deletions

View File

@ -2,13 +2,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "psycopg2"; pname = "psycopg2";
version = "2.8.3"; version = "2.8.4";
disabled = isPyPy; disabled = isPyPy;
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0ms4kx0p5n281l89awccix4d05ybmdngnjjpi9jbzd0rhf1nwyl9"; sha256 = "f898e5cc0a662a9e12bde6f931263a1bbd350cfb18e1d5336a12927851825bb6";
}; };
buildInputs = lib.optional stdenv.isDarwin openssl; buildInputs = lib.optional stdenv.isDarwin openssl;