pythonPackages.flask_elastic: init at 0.2

This commit is contained in:
Jörg Thalheim 2017-01-14 17:30:11 +01:00
parent 0b3d711fc4
commit c065c400e9
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchurl
, flask, elasticsearch }:
buildPythonPackage rec {
name = "Flask-Elastic-${version}";
version = "0.2";
src = fetchurl {
url = "mirror://pypi/F/Flask-Elastic/${name}.tar.gz";
sha256 = "0hqkwff6z78aspkf1cf815qwp02g3ch1y9dhm5v2ap8vakyac0az";
};
propagatedBuildInputs = [ flask elasticsearch ];
doCheck = false; # no tests
meta = with stdenv.lib; {
description = "Integrates official client for Elasticsearch into Flask";
license = licenses.bsd3;
maintainers = [ maintainers.mic92 ];
homepage = https://github.com/cepture/foppch/flask-elastic;
};
}

View File

@ -11320,6 +11320,8 @@ in {
};
};
flask_elastic = callPackage ../development/python-modules/flask-elastic.nix { };
flask_login = callPackage ../development/python-modules/flask-login.nix { };
flask_migrate = buildPythonPackage rec {