forked from mirrors/nixpkgs
Merge pull request #8946 from desiderius/elasticsearch-dsl-0.0.4
python-packages: update elasticsearch-dsl 0.0.3 to 0.0.4
This commit is contained in:
commit
db22d387db
|
@ -3142,23 +3142,22 @@ let
|
|||
|
||||
|
||||
elasticsearchdsl = buildPythonPackage (rec {
|
||||
name = "elasticsearch-dsl-0.0.3";
|
||||
name = "elasticsearch-dsl-0.0.4";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
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
|
||||
# Tests require a local instance of elasticsearch
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
description = "Python client for Elasticsearch";
|
||||
|
||||
homepage = https://github.com/elasticsearch/elasticsearch-dsl-py;
|
||||
|
||||
license = licenses.asl20;
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue