pythonPackages.leveldb: disable past 3.12 (#342756)
This commit is contained in:
commit
54a3f8fe8a
@ -1,19 +1,26 @@
|
||||
{
|
||||
lib,
|
||||
fetchPypi,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pythonAtLeast,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "leveldb";
|
||||
version = "0.201";
|
||||
format = "setuptools";
|
||||
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonAtLeast "3.12";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1cffe776842917e09f073bd6ea5856c64136aebddbe51bd17ea29913472fecbf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://code.google.com/archive/p/py-leveldb/";
|
||||
description = "Thread-safe Python bindings for LevelDB";
|
||||
|
Loading…
Reference in New Issue
Block a user