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