Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
647 B
Nix
33 lines
647 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";
|
|
};
|
|
}
|