17 buildPythonPackage rec {
22 disabled = pythonOlder "3.8";
24 src = fetchFromGitHub {
27 rev = "refs/tags/${version}";
28 hash = "sha256-V4QVZu4PSOW9poT6YUWbgTjJpIJ8YUtGDAE4Ijgm5Ac=";
31 build-system = [ setuptools-scm ];
33 optional-dependencies = {
49 ] ++ optional-dependencies.table ++ optional-dependencies.markdown;
51 disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [ "tests/test_vega.py" ];
53 pythonImportsCheck = [ "dvc_render" ];
56 description = "Library for rendering DVC plots";
57 homepage = "https://github.com/iterative/dvc-render";
58 changelog = "https://github.com/iterative/dvc-render/releases/tag/${version}";
59 license = licenses.asl20;
60 maintainers = with maintainers; [ fab ];