fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
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 ];
|
|
};
|
|
}
|