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