33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{ lib
|
|
, aniso8601
|
|
, blinker
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, flask
|
|
, mock
|
|
, nose
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pytz
|
|
, six
|
|
, werkzeug
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "flask-restful";
|
|
version = "0.3.9";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "Flask-RESTful";
|
|
inherit version;
|
|
hash = "sha256-zOxlC4NdSBkhOMhTKa4Dc15s7VjpstnCFG1shMBvpT4=";
|
|
};
|
|
|
|
# conditional so that overrides are easier for web applications
|
|
patches = lib.optionals (lib.versionAtLeast werkzeug.version "2.1.0") [
|
|
./werkzeug-2.1.0-compat.patch
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aniso8601
|
|
flask
|
|
pytz
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
blinker
|
|
mock
|
|
nose
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = [
|
|
# Broke in flask 2.2 upgrade
|
|
"test_exception_header_forwarded"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"flask_restful"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Framework for creating REST APIs";
|
|
homepage = "https://flask-restful.readthedocs.io";
|
|
longDescription = ''
|
|
Flask-RESTful provides the building blocks for creating a great
|
|
REST API.
|
|
'';
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|