f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
48 lines
1,017 B
Nix
48 lines
1,017 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
dulwich,
|
|
fetchFromGitHub,
|
|
gitpython,
|
|
pythonOlder,
|
|
requests,
|
|
setuptools-scm,
|
|
voluptuous,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dvc-studio-client";
|
|
version = "0.21.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iterative";
|
|
repo = "dvc-studio-client";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-SCRMBZKOt8JtDi5aGgk6TCxetvG3QU1jOv6U5/6ChTE=";
|
|
};
|
|
|
|
build-system = [ setuptools-scm ];
|
|
|
|
dependencies = [
|
|
dulwich
|
|
gitpython
|
|
requests
|
|
voluptuous
|
|
];
|
|
|
|
pythonImportsCheck = [ "dvc_studio_client" ];
|
|
|
|
# Tests try to access network
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Library to post data from DVC/DVCLive to Iterative Studio";
|
|
homepage = "https://github.com/iterative/dvc-studio-client";
|
|
changelog = "https://github.com/iterative/dvc-studio-client/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ melling ];
|
|
};
|
|
}
|