summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-05 16:51:17 -0500
committerGitHub <noreply@github.com>2022-11-05 16:51:17 -0500
commitbccbb29106064dec1f7270c6798b4d97efe19a0f (patch)
treeb3ffc51ef80a9a2a9cad00ad6b422f4042843836
parent90aff4b3e624bf2f0c90a6ba4fb317161abddf9e (diff)
parentd732cb923b4ce35502a825cfa6e22cac6bc5bdac (diff)
Merge pull request #199762 from marsam/update-restx
python310Packages.flask-restx: 0.5.1 -> 1.0.3
-rw-r--r--pkgs/development/python-modules/flask-restx/default.nix37
1 files changed, 10 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/flask-restx/default.nix b/pkgs/development/python-modules/flask-restx/default.nix
index c1e81a1801e5..6f7c83010eb1 100644
--- a/pkgs/development/python-modules/flask-restx/default.nix
+++ b/pkgs/development/python-modules/flask-restx/default.nix
@@ -1,14 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
-, fetchpatch
+, pythonOlder
, aniso8601
, jsonschema
, flask
, werkzeug
, pytz
, faker
-, six
, mock
, blinker
, pytest-flask
@@ -19,42 +18,24 @@
buildPythonPackage rec {
pname = "flask-restx";
- version = "0.5.1";
+ version = "1.0.3";
+ format = "setuptools";
+
+ disabled = pythonOlder "3.7";
# Tests not included in PyPI tarball
src = fetchFromGitHub {
owner = "python-restx";
repo = pname;
rev = version;
- sha256 = "18vrmknyxw6adn62pz3kr9kvazfgjgl4pgimdf8527fyyiwcqy15";
+ sha256 = "sha256-fodoGeVSNw4XZrVt907H20OJQIR8FlfINvEPWOkZQqI=";
};
- patches = [
- # Fixes werkzeug 2.1 compatibility
- (fetchpatch {
- # https://github.com/python-restx/flask-restx/pull/427
- url = "https://github.com/python-restx/flask-restx/commit/bb72a51860ea8a42c928f69bdd44ad20b1f9ee7e.patch";
- hash = "sha256-DRH3lI6TV1m0Dq1VyscL7GQS26OOra9g88dXZNrNpmQ=";
- })
- (fetchpatch {
- # https://github.com/python-restx/flask-restx/pull/427
- url = "https://github.com/python-restx/flask-restx/commit/bb3e9dd83b9d4c0d0fa0de7d7ff713fae71eccee.patch";
- hash = "sha256-HJpjG4aQWzEPCMfbXfkw4mz5TH9d89BCvGH2dE6Jfv0=";
- })
- # Fixes werkzeug 2.2 compatibility
- (fetchpatch {
- # https://github.com/python-restx/flask-restx/pull/463
- url = "https://github.com/python-restx/flask-restx/commit/82f7340ebb51e5c143b804bc0f20f785e96968c0.patch";
- hash = "sha256-GA+UlFDu771ul3qplsukce/mjGvJ3E4Dw/IoJQLevNU=";
- })
- ];
-
propagatedBuildInputs = [
aniso8601
flask
jsonschema
pytz
- six
werkzeug
];
@@ -75,11 +56,13 @@ buildPythonPackage rec {
"--deselect=tests/test_logging.py::LoggingTest::test_override_app_level"
];
- pythonImportsCheck = [ "flask_restx" ];
+ pythonImportsCheck = [
+ "flask_restx"
+ ];
meta = with lib; {
- homepage = "https://flask-restx.readthedocs.io/en/${version}/";
description = "Fully featured framework for fast, easy and documented API development with Flask";
+ homepage = "https://github.com/python-restx/flask-restx";
changelog = "https://github.com/python-restx/flask-restx/raw/${version}/CHANGELOG.rst";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];