3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.psycopg2: 2.5.4 -> 2.6.1

This commit is contained in:
Rok Garbas 2016-05-14 03:15:25 +02:00
parent c6a61092e7
commit ac8cd3e9a6

View file

@ -16582,27 +16582,21 @@ in modules // {
});
psycopg2 = buildPythonPackage rec {
name = "psycopg2-2.5.4";
name = "psycopg2-2.6.1";
disabled = isPyPy;
# error: invalid command 'test'
doCheck = false;
src = pkgs.fetchurl {
url = "mirror://pypi/p/psycopg2/${name}.tar.gz";
sha256 = "07ivzl7bq8bjcq5n90w4bsl29gjfm5l8yamw0paxh25si8r3zfi4";
sha256 = "0k4hshvrwsh8yagydyxgmd0pjm29lwdxkngcq9fzfzkmpsxrmkva";
};
buildInputs = optional stdenv.isDarwin pkgs.openssl;
propagatedBuildInputs = with self; [ pkgs.postgresql ];
doCheck = false;
meta = {
description = "PostgreSQL database adapter for the Python programming language";
license = with licenses; [ gpl2 zpt20 ];
};
};
publicsuffix = buildPythonPackage rec {
name = "publicsuffix-${version}";
version = "1.0.2";