depot/third_party/nixpkgs/pkgs/development/python-modules/werkzeug/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

98 lines
2.2 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
pythonOlder,
fetchPypi,
# build-system
flit-core,
# dependencies
markupsafe,
# optional-dependencies
watchdog,
# tests
cryptography,
ephemeral-port-reserve,
greenlet,
pytest-timeout,
pytest-xprocess,
pytestCheckHook,
# reverse dependencies
moto,
sentry-sdk,
}:
buildPythonPackage rec {
pname = "werkzeug";
version = "3.0.4";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-NPI3FQayUN9NT4S/57CSHkdiUldiu9k2YUkJ/iXNcwY=";
};
build-system = [ flit-core ];
dependencies = [ markupsafe ];
optional-dependencies = {
watchdog = lib.optionals (!stdenv.hostPlatform.isDarwin) [
# watchdog requires macos-sdk 10.13
watchdog
];
};
nativeCheckInputs =
[
cryptography
ephemeral-port-reserve
pytest-timeout
pytest-xprocess
pytestCheckHook
]
++ lib.optionals (pythonOlder "3.11") [ greenlet ]
++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "werkzeug" ];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ "test_get_machine_id" ];
disabledTestPaths = [
# ConnectionRefusedError: [Errno 111] Connection refused
"tests/test_serving.py"
];
pytestFlagsArray = [
# don't run tests that are marked with filterwarnings, they fail with
# warnings._OptionError: unknown warning category: 'pytest.PytestUnraisableExceptionWarning'
"-m 'not filterwarnings'"
];
passthru.tests = {
inherit moto sentry-sdk;
};
meta = {
changelog = "https://werkzeug.palletsprojects.com/en/${lib.versions.majorMinor version}.x/changes/#version-${
lib.replaceStrings [ "." ] [ "-" ] version
}";
homepage = "https://palletsprojects.com/p/werkzeug/";
description = "Comprehensive WSGI web application library";
longDescription = ''
Werkzeug is a comprehensive WSGI web application library. It
began as a simple collection of various utilities for WSGI
applications and has become one of the most advanced WSGI
utility libraries.
'';
license = lib.licenses.bsd3;
maintainers = [ ];
};
}