pythonPackages.lmdb: refactor move to python-modules
This commit is contained in:
committed by
Frederik Rietdijk
parent
6102dd1991
commit
dd44ffbcbe
26
pkgs/development/python-modules/lmdb/default.nix
Normal file
26
pkgs/development/python-modules/lmdb/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy3k
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "lmdb";
|
||||
version = "0.92";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "01nw6r08jkipx6v92kw49z34wmwikrpvc5j9xawdiyg1n2526wrx";
|
||||
};
|
||||
|
||||
# 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 ];
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user