summary refs log tree commit diff
path: root/pkgs/development/python-modules/ponywhoosh/default.nix
blob: 589be17b0163e39c07c434f24fb7477ff2e1f275 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi, pony, whoosh }:

buildPythonPackage rec {
  pname = "ponywhoosh";
  version = "1.7.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9";
  };

  propagatedBuildInputs = [
    pony
    whoosh
  ];

  meta = with lib; {
    homepage = "https://pythonhosted.org/ponywhoosh/";
    description = "Make your database over PonyORM searchable";
    license = licenses.mit;
    maintainers = with maintainers; [ alexarice ];
  };
}