blob: 6525ee68dade8e8ea3fd54aad823b224f85c9a5c (
plain)
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
31
|
{
lib,
buildPythonPackage,
fetchPypi,
pkgs,
pytest,
isPy3k,
}:
buildPythonPackage rec {
pname = "plyvel";
version = "1.5.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-PK9gCeT8JPv4cS0/XvPaflZJXCakiN8hYSGPw05GAZw=";
};
buildInputs = [ pkgs.leveldb ] ++ lib.optional isPy3k pytest;
# no tests for python2
doCheck = isPy3k;
meta = {
description = "Fast and feature-rich Python interface to LevelDB";
platforms = lib.platforms.unix;
homepage = "https://github.com/wbolster/plyvel";
license = lib.licenses.bsd3;
};
}
|