adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

21 lines
543 B
Nix

{ lib, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "leveldb";
version = "0.201";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1cffe776842917e09f073bd6ea5856c64136aebddbe51bd17ea29913472fecbf";
};
meta = with lib; {
homepage = "https://code.google.com/archive/p/py-leveldb/";
description = "Thread-safe Python bindings for LevelDB";
platforms = [ "x86_64-linux" "i686-linux" ];
license = licenses.bsd3;
maintainers = [ maintainers.aanderse ];
};
}