Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python37Packages.eve: 0.8.1 -> 0.9

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-eve/versions

authored by R. RyanTM and committed by Mario Rodas 14cf7cf5 19195b21

+6 -4
+6 -4
pkgs/development/python-modules/eve/default.nix
··· 1 1 { stdenv, buildPythonPackage, fetchPypi, flask, events 2 - , pymongo, simplejson, cerberus }: 2 + , pymongo, simplejson, cerberus, werkzeug }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "Eve"; 6 - version = "0.8.1"; 6 + version = "0.9"; 7 7 8 8 src = fetchPypi { 9 9 inherit pname version; 10 - sha256 = "88105080e8a2567a1a8d50a5cded0d7d95e95f704b310c8107ef2ff7696f5316"; 10 + sha256 = "18shfaxa1vqshnyiqx3jqsri2wxz9ibip3mdxaz8pljmk734r4b1"; 11 11 }; 12 12 13 13 propagatedBuildInputs = [ ··· 16 16 flask 17 17 pymongo 18 18 simplejson 19 + werkzeug 19 20 ]; 20 21 21 22 # tests call a running mongodb instance 22 23 doCheck = false; 23 24 24 25 meta = with stdenv.lib; { 25 - homepage = "http://python-eve.org/"; 26 + homepage = "https://python-eve.org/"; 26 27 description = "Open source Python REST API framework designed for human beings"; 27 28 license = licenses.bsd3; 29 + maintainers = [ maintainers.marsam ]; 28 30 }; 29 31 }