blob: d4a9573f9a9b79fe5ca9f3a98ad64a4b9be17b68 (
plain) (
blame)
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
58
|
{ lib
, buildPythonPackage
, dictdiffer
, diskcache
, dvc-objects
, fetchFromGitHub
, funcy
, pygtrie
, pythonOlder
, setuptools-scm
, shortuuid
, sqltrie
}:
buildPythonPackage rec {
pname = "dvc-data";
version = "3.15.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "iterative";
repo = "dvc-data";
rev = "refs/tags/${version}";
hash = "sha256-pr5RtVlGKKtpcmmCNGqcLiBFzJcajpqtPjBbzeCCHF8=";
};
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
dictdiffer
diskcache
dvc-objects
funcy
pygtrie
shortuuid
sqltrie
];
# Tests depend on upath which is unmaintained and only available as wheel
doCheck = false;
pythonImportsCheck = [
"dvc_data"
];
meta = with lib; {
description = "DVC's data management subsystem";
mainProgram = "dvc-data";
homepage = "https://github.com/iterative/dvc-data";
changelog = "https://github.com/iterative/dvc-data/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
|