Mario Rodas
2023-10-25 04:20:00 +00:00
parent c8c3423a38
commit d1be7cd61d
@@ -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 ];
};