1{ lib, buildPythonPackage, fetchPypi, pony, whoosh }:
2
3buildPythonPackage rec {
4 pname = "ponywhoosh";
5 version = "1.7.8";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9";
10 };
11
12 propagatedBuildInputs = [
13 pony
14 whoosh
15 ];
16
17 meta = with lib; {
18 homepage = "https://pythonhosted.org/ponywhoosh/";
19 description = "Make your database over PonyORM searchable";
20 license = licenses.mit;
21 maintainers = with maintainers; [ alexarice ];
22 };
23}