02dab4ab5c
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
30 lines
603 B
Nix
30 lines
603 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, pkgs
|
|
, pytest
|
|
, isPy3k
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "plyvel";
|
|
version = "1.5.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-zZGOCzFpCrzT0gKodCyvlRqy/hVz3nr3HDhFaEf5ICs=";
|
|
};
|
|
|
|
buildInputs = [ pkgs.leveldb ] ++ lib.optional isPy3k pytest;
|
|
|
|
# no tests for python2
|
|
doCheck = isPy3k;
|
|
|
|
meta = with lib; {
|
|
description = "Fast and feature-rich Python interface to LevelDB";
|
|
platforms = platforms.unix;
|
|
homepage = "https://github.com/wbolster/plyvel";
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|