ponywhoosh: init at 1.7.8

This commit is contained in:
Alex Rice 2020-05-17 11:16:34 +01:00
parent 1ccc512b39
commit 80922cac34
No known key found for this signature in database
GPG Key ID: 93DDCD7A2B3F3B88
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,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 ];
};
}

View File

@ -5055,6 +5055,8 @@ in {
polib = callPackage ../development/python-modules/polib {};
ponywhoosh = callPackage ../development/python-modules/ponywhoosh { };
posix_ipc = callPackage ../development/python-modules/posix_ipc { };
portend = callPackage ../development/python-modules/portend { };