lol

ponywhoosh: init at 1.7.8

+25
+23
pkgs/development/python-modules/ponywhoosh/default.nix
··· 1 + { lib, buildPythonPackage, fetchPypi, pony, whoosh }: 2 + 3 + buildPythonPackage rec { 4 + pname = "ponywhoosh"; 5 + version = "1.7.8"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "1mggj9d265hra4z67qyla686qvl0cf79655cszi136gh9hqlibv9"; 10 + }; 11 + 12 + propagatedBuildInputs = [ 13 + pony 14 + whoosh 15 + ]; 16 + 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 + }; 23 + }
+2
pkgs/top-level/python-packages.nix
··· 5055 5055 5056 5056 polib = callPackage ../development/python-modules/polib {}; 5057 5057 5058 + ponywhoosh = callPackage ../development/python-modules/ponywhoosh { }; 5059 + 5058 5060 posix_ipc = callPackage ../development/python-modules/posix_ipc { }; 5059 5061 5060 5062 portend = callPackage ../development/python-modules/portend { };