Merge pull request #88015 from alexarice/agda-pkg-init

agda-pkg: init at 0.1.50
This commit is contained in:
Dmitry Kalinkin
2020-05-28 12:32:34 -04:00
committed by GitHub
4 changed files with 71 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 ];
};
}