587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
82 lines
1.7 KiB
Nix
82 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
glibcLocales,
|
|
importlib-metadata,
|
|
logfury,
|
|
packaging,
|
|
pdm-backend,
|
|
pyfakefs,
|
|
pytest-lazy-fixture,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
pythonRelaxDepsHook,
|
|
requests,
|
|
tqdm,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "b2sdk";
|
|
version = "2.0.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Backblaze";
|
|
repo = "b2-sdk-python";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-0/UC4O19oO8SpboiPIhvkWBA8XHpc279fl377MooK54=";
|
|
};
|
|
|
|
build-system = [ pdm-backend ];
|
|
|
|
nativeBuildInputs = [ pythonRelaxDepsHook ];
|
|
|
|
pythonRemoveDeps = [ "setuptools" ];
|
|
|
|
dependencies =
|
|
[
|
|
packaging
|
|
logfury
|
|
requests
|
|
]
|
|
++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]
|
|
++ lib.optionals (pythonOlder "3.12") [ typing-extensions ];
|
|
|
|
nativeCheckInputs = [
|
|
pyfakefs
|
|
pytest-lazy-fixture
|
|
pytest-mock
|
|
pytestCheckHook
|
|
tqdm
|
|
] ++ lib.optionals stdenv.isLinux [ glibcLocales ];
|
|
|
|
disabledTestPaths = [
|
|
# requires aws s3 auth
|
|
"test/integration/test_download.py"
|
|
"test/integration/test_upload.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Test requires an API key
|
|
"test_raw_api"
|
|
"test_files_headers"
|
|
"test_large_file"
|
|
"test_file_info_b2_attributes"
|
|
];
|
|
|
|
pythonImportsCheck = [ "b2sdk" ];
|
|
|
|
meta = with lib; {
|
|
description = "Client library and utilities for access to B2 Cloud Storage (backblaze)";
|
|
homepage = "https://github.com/Backblaze/b2-sdk-python";
|
|
changelog = "https://github.com/Backblaze/b2-sdk-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|