python-packages: update elasticsearch-dsl 0.0.3 to 0.0.4
This commit is contained in:
parent
17d9f91395
commit
0d9d941d65
1 changed files with 4 additions and 5 deletions
|
@ -3142,23 +3142,22 @@ let
|
||||||
|
|
||||||
|
|
||||||
elasticsearchdsl = buildPythonPackage (rec {
|
elasticsearchdsl = buildPythonPackage (rec {
|
||||||
name = "elasticsearch-dsl-0.0.3";
|
name = "elasticsearch-dsl-0.0.4";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "https://pypi.python.org/packages/source/e/elasticsearch-dsl/${name}.tar.gz";
|
url = "https://pypi.python.org/packages/source/e/elasticsearch-dsl/${name}.tar.gz";
|
||||||
md5 = "6cbc9ed7aefb3ef804be4e3b318b2570";
|
sha256 = "0bz8p10qk7rz10glq9dm2nq9m1x6czzlqk518107x39gx18lm1a2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [ covCore dateutil elasticsearch mock pytest pytestcov unittest2 urllib3 ];
|
buildInputs = with self; [ covCore dateutil elasticsearch mock pytest pytestcov unittest2 urllib3 pytz ];
|
||||||
|
|
||||||
# ImportError: No module named test_elasticsearch_dsl
|
# ImportError: No module named test_elasticsearch_dsl
|
||||||
|
# Tests require a local instance of elasticsearch
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Python client for Elasticsearch";
|
description = "Python client for Elasticsearch";
|
||||||
|
|
||||||
homepage = https://github.com/elasticsearch/elasticsearch-dsl-py;
|
homepage = https://github.com/elasticsearch/elasticsearch-dsl-py;
|
||||||
|
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue