blob: fd37ed3dcc0cb8e1a7660e7649d3c588138049e6 (
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
32
33
34
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonAtLeast,
setuptools,
}:
buildPythonPackage rec {
pname = "leveldb";
version = "0.201";
pyproject = true;
disabled = pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;
sha256 = "1cffe776842917e09f073bd6ea5856c64136aebddbe51bd17ea29913472fecbf";
};
nativeBuildInputs = [ setuptools ];
meta = {
homepage = "https://code.google.com/archive/p/py-leveldb/";
description = "Thread-safe Python bindings for LevelDB";
platforms = [
"x86_64-linux"
"i686-linux"
];
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.aanderse ];
};
}
|