{ buildPythonPackage , fetchPypi , urllib3, requests , nosexcover, mock , stdenv }: buildPythonPackage (rec { pname = "elasticsearch"; version = "7.10.0"; src = fetchPypi { inherit pname version; sha256 = "9053ca99bc9db84f5d80e124a79a32dfa0f7079b2112b546a03241c0dbeda36d"; }; # 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 stdenv.lib; { description = "Official low-level client for Elasticsearch"; homepage = "https://github.com/elasticsearch/elasticsearch-py"; license = licenses.asl20; maintainers = with maintainers; [ desiderius ]; }; })