e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
51 lines
1,022 B
Nix
51 lines
1,022 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dulwich
|
|
, fetchFromGitHub
|
|
, gitpython
|
|
, pythonOlder
|
|
, requests
|
|
, setuptools-scm
|
|
, voluptuous
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dvc-studio-client";
|
|
version = "0.18.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iterative";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ZgjNshF5UFOY5TewNMlJDOajjI1Bfd/a4v7HrAKwaMw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
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 ];
|
|
};
|
|
}
|