My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/plyvel/default.nix

29 lines
593 B

{ lib
, buildPythonPackage
, fetchPypi
, pkgs
, pytest
, isPy3k
}:
buildPythonPackage rec {
pname = "plyvel";
version = "1.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "4ea98bea04ebf0f44747bacdfafefc8827787106fbb787f0aedc46482b2dfd53";
};
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;
};
}