Merge pull request #61896 from r-ryantm/auto-update/python3.7-Eve

python37Packages.eve: 0.8.1 -> 0.9
This commit is contained in:
Mario Rodas 2019-05-30 21:37:57 -05:00 committed by GitHub
commit d0ad25a3be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,13 @@
{ stdenv, buildPythonPackage, fetchPypi, flask, events
, pymongo, simplejson, cerberus }:
, pymongo, simplejson, cerberus, werkzeug }:
buildPythonPackage rec {
pname = "Eve";
version = "0.8.1";
version = "0.9";
src = fetchPypi {
inherit pname version;
sha256 = "88105080e8a2567a1a8d50a5cded0d7d95e95f704b310c8107ef2ff7696f5316";
sha256 = "18shfaxa1vqshnyiqx3jqsri2wxz9ibip3mdxaz8pljmk734r4b1";
};
propagatedBuildInputs = [
@ -16,14 +16,16 @@ buildPythonPackage rec {
flask
pymongo
simplejson
werkzeug
];
# tests call a running mongodb instance
doCheck = false;
meta = with stdenv.lib; {
homepage = "http://python-eve.org/";
homepage = "https://python-eve.org/";
description = "Open source Python REST API framework designed for human beings";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};
}