depot/third_party/nixpkgs/pkgs/development/python-modules/plyvel/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

29 lines
608 B
Nix

{ lib, stdenv
, buildPythonPackage
, fetchPypi
, pkgs
, pytest
, isPy3k
}:
buildPythonPackage rec {
pname = "plyvel";
version = "1.3.0";
src = fetchPypi {
inherit pname version;
sha256 = "a7a09033a0fd33ca47094e8bbe01714abfcf644f4b7a337d3970e91a2599e2c4";
};
buildInputs = [ pkgs.leveldb ] ++ stdenv.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;
};
}