summary refs log tree commit diff
path: root/pkgs/development/python-modules/lmdb/default.nix
blob: 20020b97ef230d3535d4c2a79284d38ad2182628 (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, cffi
, lmdb
, ludios_wpull
}:

buildPythonPackage rec {
  pname = "lmdb";
  version = "1.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "4136ffdf0aad61da86d1402808029d002a771b2a9ccc9b39c6bcafa7847c21b6";
  };

  buildInputs = [ lmdb ];

  propogatedBuildInputs = [ ludios_wpull ];

  checkInputs = [ cffi pytestCheckHook ];

  LMDB_FORCE_SYSTEM=1;

  meta = with lib; {
    description = "Universal Python binding for the LMDB 'Lightning' Database";
    homepage = "https://github.com/dw/py-lmdb";
    license = licenses.openldap;
    maintainers = with maintainers; [ copumpkin ivan ];
  };
}