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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "5f76a90ebd08922acca11948779b5055f7a262687178e9e94f4e804b9f8465bc";
  };

  buildInputs = [ lmdb ];

  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 ];
  };
}