blob: 7d5dcdd27705dd51457039bb7384a34ae40b4546 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
fsspec,
pytest-asyncio,
pytest-mock,
pytestCheckHook,
reflink,
setuptools-scm,
shortuuid,
}:
buildPythonPackage rec {
pname = "dvc-objects";
version = "5.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "iterative";
repo = "dvc-objects";
tag = version;
hash = "sha256-COrHD7RtmShdC7YWFc+S3xi/Xxt+Afrj3vaCLfE8t28=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --benchmark-skip" ""
'';
build-system = [ setuptools-scm ];
dependencies = [ fsspec ];
nativeCheckInputs = [
pytest-asyncio
pytest-mock
pytestCheckHook
reflink
shortuuid
];
pythonImportsCheck = [ "dvc_objects" ];
disabledTestPaths = [
# Disable benchmarking
"tests/benchmarks/"
];
meta = {
description = "Library for DVC objects";
homepage = "https://github.com/iterative/dvc-objects";
changelog = "https://github.com/iterative/dvc-objects/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
|