linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / ponywhoosh / default.nix
blob589be17b0163e39c07c434f24fb7477ff2e1f275
1 { lib, buildPythonPackage, fetchPypi, pony, whoosh }:
3 buildPythonPackage rec {
4   pname = "ponywhoosh";
5   version = "1.7.8";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9";
10   };
12   propagatedBuildInputs = [
13     pony
14     whoosh
15   ];
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   };