Merge pull request #176912 from r-ryantm/auto-update/python310Packages.eve

python310Packages.eve: 1.1.5 -> 2.0
This commit is contained in:
Mario Rodas 2022-06-10 20:06:10 -05:00 committed by GitHub
commit 5017e05464
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
, flask
, events
, pymongo
@ -11,13 +12,15 @@
buildPythonPackage rec {
pname = "Eve";
version = "1.1.5";
version = "2.0";
src = fetchPypi {
inherit pname version;
sha256 = "5647ee7dd6e063b967276e49f564cd4f96decdd0a218482bdf86c404a2be1fbf";
sha256 = "sha256-KVKUSPGGLXOusflL4OjzXdJDGi66q+895qvtaBrSFG8=";
};
disabled = pythonOlder "3.7";
propagatedBuildInputs = [
cerberus
events
@ -40,6 +43,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://python-eve.org/";
description = "Open source Python REST API framework designed for human beings";
changelog = "https://github.com/pyeve/eve/blob/v${version}/CHANGES.rst";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};