nixpkgs/pkgs/development/python-modules/lmdb/default.nix
R. RyanTM 32032825bf python36Packages.lmdb: 0.92 -> 0.94
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-lmdb/versions
2018-10-24 12:32:17 +02:00

27 lines
562 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "lmdb";
version = "0.94";
src = fetchPypi {
inherit pname version;
sha256 = "1zh38gvkqw1jm5105if6rr7ccbgyxr7k2rm5ygb9ab3bq82pyaww";
};
# Some sort of mysterious failure with lmdb.tool
doCheck = !isPy3k;
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 ];
};
}