Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / ponywhoosh / default.nix
blob2a905326cbc22bd7597f88d4d3c42306ea4d36b9
1 { lib, buildPythonPackage, fetchPypi, pony, whoosh }:
3 buildPythonPackage rec {
4   pname = "ponywhoosh";
5   version = "1.7.8";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9";
11   };
13   propagatedBuildInputs = [
14     pony
15     whoosh
16   ];
18   meta = with lib; {
19     homepage = "https://pythonhosted.org/ponywhoosh/";
20     description = "Make your database over PonyORM searchable";
21     license = licenses.mit;
22     maintainers = with maintainers; [ alexarice ];
23   };