python313Packages.flask-babel: switch to pyproject = true, minor cleanup

Changed files
+9 -8
pkgs
development
python-modules
flask-babel
+9 -8
pkgs/development/python-modules/flask-babel/default.nix
···
buildPythonPackage rec {
pname = "flask-babel";
version = "4.1.0";
-
format = "pyproject";
+
pyproject = true;
+
+
outputs = [
+
"out"
+
"doc"
+
];
src = fetchFromGitHub {
owner = "python-babel";
···
hash = "sha256-NcwcMLGabWrjbFZhDU1MVWpqAm0prBlqHfTdLV7EqoI=";
};
-
outputs = [
-
"out"
-
"doc"
-
];
-
patches = [
# Fix list-translations() ordering in tests
# https://github.com/python-babel/flask-babel/pull/242
···
nativeBuildInputs = [
furo
-
poetry-core
sphinxHook
];
-
propagatedBuildInputs = [
+
build-system = [ poetry-core ];
+
+
dependencies = [
babel
flask
jinja2