Yueh-Shun Li 624897829b treewide: modernize Python package pytest flags
Use `(enabled|disabled)(TestPaths|TestMarks|Tests)` and `pytestFlags`
instead of the `__structuredAttrs`-incompatible `pytestFlagsArray`.
2025-07-15 03:00:08 +08:00

73 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
httpbin,
multidict,
pytestCheckHook,
pythonOlder,
requests,
setuptools,
six,
wsgiprox,
pytest-cov-stub,
}:
buildPythonPackage rec {
pname = "warcio";
version = "1.7.5";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "webrecorder";
repo = "warcio";
tag = "v${version}"; # Repo has no git tags, see https://github.com/webrecorder/warcio/issues/126
hash = "sha256-i1bVbXf1RQoWCADFwlVEnFhb3sVZ91vijUtzVLWMc2Q=";
};
patches = [
(fetchpatch {
# Add offline mode to skip tests that require an internet connection, https://github.com/webrecorder/warcio/pull/135
name = "add-offline-option.patch";
url = "https://github.com/webrecorder/warcio/pull/135/commits/2546fe457c57ab0b391764a4ce419656458d9d07.patch";
hash = "sha256-3izm9LvAeOFixiIUUqmd5flZIxH92+NxL7jeu35aObQ=";
})
];
propagatedBuildInputs = [
six
setuptools
];
nativeCheckInputs = [
httpbin
multidict # Optional. Without this, one test in test/test_utils.py is skipped.
pytestCheckHook
requests
wsgiprox
pytest-cov-stub
];
pytestFlags = [
"--offline"
];
disabledTestPaths = [
"test/test_capture_http_proxy.py"
];
pythonImportsCheck = [ "warcio" ];
meta = with lib; {
description = "Streaming WARC/ARC library for fast web archive IO";
mainProgram = "warcio";
homepage = "https://github.com/webrecorder/warcio";
changelog = "https://github.com/webrecorder/warcio/blob/master/CHANGELIST.rst";
license = licenses.asl20;
maintainers = with maintainers; [ Luflosi ];
};
}