Unverified Commit 06441978 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #263469 from marsam/update-flask-restx

python311Packages.flask-restx: 1.1.0 -> 1.2.0
parents 049aa381 d1be7cd6
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@
, aniso8601
, jsonschema
, flask
, importlib-resources
, werkzeug
, pytz
, faker
@@ -19,22 +20,23 @@

buildPythonPackage rec {
  pname = "flask-restx";
  version = "1.1.0";
  version = "1.2.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";
  disabled = pythonOlder "3.8";

  # Tests not included in PyPI tarball
  src = fetchFromGitHub {
    owner = "python-restx";
    repo = pname;
    rev = "refs/tags/${version}";
    hash = "sha256-alXuo6TGDX2ko6VIKpAtyrg0EBkxEnC3DabH8GYqEs0=";
    hash = "sha256-9o0lgDtjsZta9fVJnD02In6wvxNwPA667WeIkpRv8Z4=";
  };

  propagatedBuildInputs = [
    aniso8601
    flask
    importlib-resources
    jsonschema
    pytz
    werkzeug
@@ -71,7 +73,7 @@ buildPythonPackage rec {
  meta = with lib; {
    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";
    changelog = "https://github.com/python-restx/flask-restx/blob/${version}/CHANGELOG.rst";
    license = licenses.bsd3;
    maintainers = [ maintainers.marsam ];
  };