ponywhoosh: init at 1.7.8
This commit is contained in:
parent
1ccc512b39
commit
80922cac34
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/ponywhoosh/default.nix
Normal file
23
pkgs/development/python-modules/ponywhoosh/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue