504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
24 lines
627 B
Nix
24 lines
627 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, flask, elasticsearch }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-elastic";
|
|
version = "0.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "Flask-Elastic";
|
|
inherit version;
|
|
hash = "sha256-XwGm/FQbXSV2qbAlHyAbT4DLcQnIseDm1Qqdb5zjE0M=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ flask elasticsearch ];
|
|
doCheck = false; # no tests
|
|
|
|
meta = with lib; {
|
|
description = "Integrates official client for Elasticsearch into Flask";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.mic92 ];
|
|
homepage = "https://github.com/marceltschoppch/flask-elastic";
|
|
};
|
|
}
|