depot/third_party/nixpkgs/pkgs/development/python-modules/ponywhoosh/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

24 lines
553 B
Nix

{ lib, buildPythonPackage, fetchPypi, pony, whoosh }:
buildPythonPackage rec {
pname = "ponywhoosh";
version = "1.7.8";
format = "setuptools";
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 ];
};
}