pythonPackages.elasticsearch: move derivation to python-modules
This commit is contained in:
parent
10c6439a89
commit
c02a883169
29
pkgs/development/python-modules/elasticsearch/default.nix
Normal file
29
pkgs/development/python-modules/elasticsearch/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, urllib3, requests
|
||||||
|
, nosexcover, mock
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage (rec {
|
||||||
|
pname = "elasticsearch";
|
||||||
|
version = "6.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "029q603g95fzkh87xkbxxmjfq5s9xkr9y27nfik6d4prsl0zxmlz";
|
||||||
|
};
|
||||||
|
|
||||||
|
# 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 ];
|
||||||
|
};
|
||||||
|
})
|
@ -4431,29 +4431,7 @@ in {
|
|||||||
|
|
||||||
edward = callPackage ../development/python-modules/edward { };
|
edward = callPackage ../development/python-modules/edward { };
|
||||||
|
|
||||||
elasticsearch = buildPythonPackage (rec {
|
elasticsearch = callPackage ../development/python-modules/elasticsearch { };
|
||||||
pname = "elasticsearch";
|
|
||||||
version = "6.0.0";
|
|
||||||
name = "${pname}-${version}";
|
|
||||||
|
|
||||||
src = fetchPypi {
|
|
||||||
inherit pname version;
|
|
||||||
sha256 = "029q603g95fzkh87xkbxxmjfq5s9xkr9y27nfik6d4prsl0zxmlz";
|
|
||||||
};
|
|
||||||
|
|
||||||
# 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 = with self; [ urllib3 requests ];
|
|
||||||
buildInputs = with self; [ nosexcover mock ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
description = "Official low-level client for Elasticsearch";
|
|
||||||
homepage = https://github.com/elasticsearch/elasticsearch-py;
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ desiderius ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
elasticsearchdsl = buildPythonPackage (rec {
|
elasticsearchdsl = buildPythonPackage (rec {
|
||||||
name = "elasticsearch-dsl-0.0.9";
|
name = "elasticsearch-dsl-0.0.9";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user