nixpkgs/pkgs/development/python-modules/flask-elastic/default.nix

24 lines
602 B
Nix

{ lib, buildPythonPackage, fetchPypi
, flask, elasticsearch }:
buildPythonPackage rec {
pname = "flask-elastic";
version = "0.2";
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";
};
}