ch9344: 2.0 -> 0-unstable-2024-11-15 (#354536)
[NixPkgs.git] / pkgs / development / python-modules / plyvel / default.nix
blob5e7874057258ab11347fcbe9d5f49e8b394352c1
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pkgs,
6   pytest,
7   isPy3k,
8 }:
10 buildPythonPackage rec {
11   pname = "plyvel";
12   version = "1.5.1";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-PK9gCeT8JPv4cS0/XvPaflZJXCakiN8hYSGPw05GAZw=";
18   };
20   buildInputs = [ pkgs.leveldb ] ++ lib.optional isPy3k pytest;
22   # no tests for python2
23   doCheck = isPy3k;
25   meta = with lib; {
26     description = "Fast and feature-rich Python interface to LevelDB";
27     platforms = platforms.unix;
28     homepage = "https://github.com/wbolster/plyvel";
29     license = licenses.bsd3;
30   };