nixpkgs/pkgs/development/python-modules/elasticsearch/default.nix
2021-04-03 17:48:30 +02:00

30 lines
811 B
Nix

{ buildPythonPackage
, fetchPypi
, urllib3, requests
, nosexcover, mock
, lib
}:
buildPythonPackage (rec {
pname = "elasticsearch";
version = "7.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "9a77172be02bc4855210d83f0f1346a1e7d421e3cb2ca47ba81ac0c5a717b3a0";
};
# Check is disabled because running them destroy the content of the local cluster!
# https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch
doCheck = false;
propagatedBuildInputs = [ urllib3 requests ];
buildInputs = [ nosexcover mock ];
meta = with lib; {
description = "Official low-level client for Elasticsearch";
homepage = "https://github.com/elasticsearch/elasticsearch-py";
license = licenses.asl20;
maintainers = with maintainers; [ desiderius ];
};
})