python310Packages.dvclive: init at 0.8.2

This commit is contained in:
Fabian Affolter 2022-05-27 21:27:55 +02:00
parent 5ea241396e
commit e45d512ec5
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, buildPythonPackage
, dvc-render
, fetchFromGitHub
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "dvclive";
version = "0.8.2";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "iterative";
repo = pname;
rev = version;
hash = "sha256-ditc4WWTEuO4ACqL87BNgjm1B6Aj6PPWrFX+OoF5jOI=";
};
propagatedBuildInputs = [
dvc-render
];
# Circular dependency with dvc
doCheck = false;
pythonImportsCheck = [
"dvclive"
];
meta = with lib; {
description = "Library for logging machine learning metrics and other metadata in simple file formats";
homepage = "https://github.com/iterative/dvclive";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -2594,6 +2594,8 @@ in {
durus = callPackage ../development/python-modules/durus { };
dvclive = callPackage ../development/python-modules/dvclive { };
dvc-render = callPackage ../development/python-modules/dvc-render { };
dwdwfsapi = callPackage ../development/python-modules/dwdwfsapi { };