Skip to content

Commit

Permalink
pythonPackages: plyvel: init at 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
oxij committed Nov 8, 2016
1 parent 08a5c36 commit 79fb5d4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16341,6 +16341,27 @@ in {
};
});

plyvel = buildPythonPackage (rec {
name = "plyvel-0.9";

src = pkgs.fetchurl {
url = "mirror://pypi/p/plyvel/${name}.tar.gz";
sha256 = "1scq75qyks9vmjd19bx57f2y60mkdr44ajvb12p3cjg439l96zaq";
};

buildInputs = with self; [ pkgs.leveldb ]
++ optional isPy3k pytest;

# no tests for python2
doCheck = isPy3k;

meta = {
description = "Fast and feature-rich Python interface to LevelDB";
homepage = https://github.com/wbolster/plyvel;
license = licenses.bsd3;
};
});

osc = buildPythonPackage (rec {
name = "osc-0.133+git";
disabled = isPy3k;
Expand Down

0 comments on commit 79fb5d4

Please sign in to comment.