Merge pull request #303235 from fabaff/dvc-render-bump

python312Packages.dvc-render: 1.0.1 -> 1.0.2
This commit is contained in:
Fabian Affolter 2024-04-11 08:08:37 +02:00 committed by GitHub
commit ffac9a85ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 20 additions and 27 deletions

View File

@ -1,21 +1,22 @@
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, flatten-dict
, funcy
, matplotlib
, tabulate
, pytestCheckHook
, pytest-mock
, pytest-test-utils
, pythonOlder
, setuptools-scm
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
flatten-dict,
funcy,
matplotlib,
tabulate,
pytestCheckHook,
pytest-mock,
pytest-test-utils,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "dvc-render";
version = "1.0.1";
version = "1.0.2";
pyproject = true;
disabled = pythonOlder "3.8";
@ -24,12 +25,10 @@ buildPythonPackage rec {
owner = "iterative";
repo = "dvc-render";
rev = "refs/tags/${version}";
hash = "sha256-7rmmhf6Y6teoHR8u1+Ce1Xq0rdtC1/MWLXb282OOEnc=";
hash = "sha256-V4QVZu4PSOW9poT6YUWbgTjJpIJ8YUtGDAE4Ijgm5Ac=";
};
nativeBuildInputs = [
setuptools-scm
];
build-system = [ setuptools-scm ];
passthru.optional-dependencies = {
table = [
@ -47,17 +46,11 @@ buildPythonPackage rec {
pytestCheckHook
pytest-mock
pytest-test-utils
]
++ passthru.optional-dependencies.table
++ passthru.optional-dependencies.markdown;
] ++ passthru.optional-dependencies.table ++ passthru.optional-dependencies.markdown;
disabledTestPaths = lib.optionals stdenv.isDarwin [
"tests/test_vega.py"
];
disabledTestPaths = lib.optionals stdenv.isDarwin [ "tests/test_vega.py" ];
pythonImportsCheck = [
"dvc_render"
];
pythonImportsCheck = [ "dvc_render" ];
meta = with lib; {
description = "Library for rendering DVC plots";