5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
53 lines
1 KiB
Nix
53 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, dulwich
|
|
, fetchFromGitHub
|
|
, gitpython
|
|
, pythonOlder
|
|
, requests
|
|
, setuptools-scm
|
|
, voluptuous
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dvc-studio-client";
|
|
version = "0.15.0";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iterative";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-azv9B5TiDlKzPD1+8tUOyMo8LDVgcSwiikwLrM/9ZEg=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
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 ];
|
|
};
|
|
}
|