about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pq/default.nix
blob: 1227a6749883ce123d71a3bc4c0e847a7000001e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, buildPythonPackage
, fetchPypi
, psycopg2
, isPy27
}:

buildPythonPackage rec {
  pname = "pq";
  version = "1.8.1";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "9e2c0195488263902ebc9da8df6c82bebe4ee32c79d9ecd0cdc2945afbf7ad32";
  };

  # psycopg2cffi is compatible with psycopg2 and author states that
  # module is compatible with psycopg2
  postConfigure = ''
    substituteInPlace setup.py \
      --replace "psycopg2cffi" "psycopg2"

    substituteInPlace pq/tests.py \
      --replace "psycopg2cffi" "psycopg2"
  '';

  checkInputs = [
    psycopg2
  ];

  # tests require running postgresql cluster
  doCheck = false;

  meta = with lib; {
    description = "PQ is a transactional queue for PostgreSQL";
    homepage = https://github.com/malthe/pq/;
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}