summary refs log tree commit diff
path: root/pkgs/development/python-modules/bsddb3/default.nix
blob: 971aac70ad8e9a6f80dfc04fc51005e4133dea10 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, pkgs
, isPy3k
}:

buildPythonPackage rec {
  pname = "bsddb3";
  version = "6.2.6";
  disabled = isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "42d621f4037425afcb16b67d5600c4556271a071a9a7f7f2c2b1ba65bc582d05";
  };

  buildInputs = [ pkgs.db ];

  # Judging from SyntaxError in test
  doCheck = false; # test suite breaks python3 compatibility

  # Path to database need to be set.
  # Somehow the setup.py flag is not propagated.
  #setupPyBuildFlags = [ "--berkeley-db=${pkgs.db}" ];
  # We can also use a variable
  preConfigure = ''
    export BERKELEYDB_DIR=${pkgs.db.dev};
  '';

  meta = with stdenv.lib; {
    description = "Python bindings for Oracle Berkeley DB";
    homepage = https://www.jcea.es/programacion/pybsddb.htm;
    license = with licenses; [ agpl3 ]; # License changed from bsd3 to agpl3 since 6.x
    maintainers = [ maintainers.costrouc ];
  };

}