depot/third_party/nixpkgs/pkgs/development/python-modules/lmdb/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
583 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, pytest
, cffi
}:
buildPythonPackage rec {
pname = "lmdb";
version = "0.98";
src = fetchPypi {
inherit pname version;
sha256 = "0625bc28bf0893e6000a83be7234f915ca078c32f9e73d8ae48b3508db7af708";
};
checkInputs = [ pytest cffi ];
checkPhase = ''
py.test
'';
meta = with stdenv.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 ];
};
}