nixos/java: No bashisms in `environment.shellInit` script (#294121)
[NixPkgs.git] / pkgs / development / python-modules / ponywhoosh / default.nix
blob52d982173d4797619b28f27dcbafe82684e9cdb0
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pony,
6   whoosh,
7 }:
9 buildPythonPackage rec {
10   pname = "ponywhoosh";
11   version = "1.7.8";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9";
17   };
19   propagatedBuildInputs = [
20     pony
21     whoosh
22   ];
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   };