Unverified Commit 0fdcadfd authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

python312Packages.lmdb: 1.5.1 -> 1.6.2 (#374571)

parents 948fa1bc 8c874fbd
Loading
Loading
Loading
Loading
+11 −6
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  setuptools,
  pytestCheckHook,
  cffi,
  lmdb,
@@ -10,18 +11,22 @@

buildPythonPackage rec {
  pname = "lmdb";
  version = "1.5.1";
  format = "setuptools";
  version = "1.6.2";
  pyproject = true;

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-cXwlWCfTMeAvckK0QFGqBkZskPbXMuywezHt+x4Gxno=";
    hash = "sha256-0o4/pZk1/2iIWHYOxS8gLsuMEImj9o0fFi6jB40VHnM=";
  };

  build-system = [ setuptools ];

  buildInputs = [ lmdb ];

  pythonImportsCheck = [ "lmdb" ];

  nativeCheckInputs = [
    cffi
    pytestCheckHook
@@ -29,12 +34,12 @@ buildPythonPackage rec {

  LMDB_FORCE_SYSTEM = 1;

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