1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
95 lines
2.0 KiB
Nix
95 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
aniso8601,
|
|
jsonschema,
|
|
flask,
|
|
importlib-resources,
|
|
werkzeug,
|
|
pytz,
|
|
faker,
|
|
mock,
|
|
blinker,
|
|
py,
|
|
pytest-flask,
|
|
pytest-mock,
|
|
pytest-benchmark,
|
|
pytest-vcr,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-restx";
|
|
version = "1.3.2";
|
|
pyproject = true;
|
|
|
|
# Tests not included in PyPI tarball
|
|
src = fetchFromGitHub {
|
|
owner = "python-restx";
|
|
repo = "flask-restx";
|
|
tag = version;
|
|
hash = "sha256-KSHRfGX6M/w09P35A68u7uzMKaRioytScPh0Sw8JBfw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
aniso8601
|
|
flask
|
|
importlib-resources
|
|
jsonschema
|
|
pytz
|
|
werkzeug
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
blinker
|
|
faker
|
|
mock
|
|
py
|
|
pytest-benchmark
|
|
pytest-flask
|
|
pytest-mock
|
|
pytest-vcr
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlags = [
|
|
"--benchmark-disable"
|
|
];
|
|
disabledTestPaths = [
|
|
"tests/test_inputs.py::URLTest::test_check"
|
|
"tests/test_inputs.py::EmailTest::test_valid_value_check"
|
|
"tests/test_logging.py::LoggingTest::test_override_app_level"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"tests/test_inputs.py::EmailTest::test_invalid_values_check"
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_specs_endpoint_host_and_subdomain"
|
|
# broken in werkzeug 2.3 upgrade
|
|
"test_media_types_method"
|
|
"test_media_types_q"
|
|
# erroneous use of pytz
|
|
# https://github.com/python-restx/flask-restx/issues/620
|
|
# two fixes are proposed: one fixing just tests, and one removing pytz altogether.
|
|
# we disable the tests in the meanwhile and let upstream decide
|
|
"test_rfc822_value"
|
|
"test_iso8601_value"
|
|
];
|
|
|
|
pythonImportsCheck = [ "flask_restx" ];
|
|
|
|
meta = {
|
|
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/blob/${version}/CHANGELOG.rst";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|