Merge pull request #88015 from alexarice/agda-pkg-init
agda-pkg: init at 0.1.50
This commit is contained in:
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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user