python3Packages.eve: 2.2.3 -> 2.2.4 (#468348)

This commit is contained in:
Fabian Affolter
2025-12-06 22:54:58 +00:00
committed by GitHub
@@ -6,30 +6,27 @@
fetchFromGitHub,
flask,
pymongo,
pythonOlder,
setuptools,
simplejson,
}:
buildPythonPackage rec {
pname = "eve";
version = "2.2.3";
version = "2.2.4";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pyeve";
repo = "eve";
tag = "v${version}";
hash = "sha256-SnypLhUGAw3e0KQ2CjP6NHTIypMJdN18zzzYAG14m7Y=";
hash = "sha256-58PYwDzeQMmCLdqJfxp153+/AYNzO4JNzs7llyr7GJc=";
};
pythonRelaxDeps = [ "events" ];
build-system = [ setuptools ];
propagatedBuildInputs = [
dependencies = [
cerberus
events
flask
@@ -45,7 +42,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Open source Python REST API framework designed for human beings";
homepage = "https://python-eve.org/";
changelog = "https://github.com/pyeve/eve/blob/v${version}/CHANGES.rst";
changelog = "https://github.com/pyeve/eve/blob/${src.tag}/CHANGES.rst";
license = licenses.bsd3;
maintainers = [ ];
};