2018-10-15 17:28:32 +01:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pkgs
|
|
|
|
, isPy3k
|
2018-11-03 11:40:03 +00:00
|
|
|
, python
|
2018-10-15 17:28:32 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "bsddb3";
|
|
|
|
version = "6.2.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "42d621f4037425afcb16b67d5600c4556271a071a9a7f7f2c2b1ba65bc582d05";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgs.db ];
|
|
|
|
|
2018-11-03 11:40:03 +00:00
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} test.py
|
|
|
|
'';
|
2018-10-15 17:28:32 +01:00
|
|
|
|
|
|
|
# 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 ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|