2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
aiohttp-retry,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
dvc-objects,
|
|
|
|
fsspec,
|
|
|
|
funcy,
|
|
|
|
pythonOlder,
|
|
|
|
setuptools-scm,
|
2023-03-15 16:39:30 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dvc-http";
|
2024-01-02 11:29:13 +00:00
|
|
|
version = "2.32.0";
|
2024-04-21 15:54:59 +00:00
|
|
|
pyproject = true;
|
2023-03-15 16:39:30 +00:00
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "iterative";
|
2024-04-21 15:54:59 +00:00
|
|
|
repo = "dvc-http";
|
2023-03-15 16:39:30 +00:00
|
|
|
rev = "refs/tags/${version}";
|
2024-01-02 11:29:13 +00:00
|
|
|
hash = "sha256-ru/hOFv/RcS/7SBpTJU8xFxdllmaiH4dV1ouS6GGKkY=";
|
2023-03-15 16:39:30 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
build-system = [ setuptools-scm ];
|
2023-03-15 16:39:30 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
dependencies = [
|
|
|
|
aiohttp-retry
|
2023-03-15 16:39:30 +00:00
|
|
|
dvc-objects
|
|
|
|
fsspec
|
2024-04-21 15:54:59 +00:00
|
|
|
funcy
|
2023-03-15 16:39:30 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Currently it's not possible to run the tests
|
|
|
|
# ModuleNotFoundError: No module named 'dvc.testing'
|
|
|
|
doCheck = false;
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "dvc_http" ];
|
2023-03-15 16:39:30 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "HTTP plugin for dvc";
|
|
|
|
homepage = "https://github.com/iterative/dvc-http";
|
|
|
|
changelog = "https://github.com/iterative/dvc-http/releases/tag/${version}";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|