python311Packages.dvc-objects: 1.3.2 -> 1.4.9

Changelog: https://github.com/iterative/dvc-objects/releases/tag/1.4.9
This commit is contained in:
Fabian Affolter 2023-12-07 15:44:55 +01:00
parent 63e5daf5f1
commit 79b21df7c4

View File

@ -8,6 +8,7 @@
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
, reflink
, setuptools-scm , setuptools-scm
, shortuuid , shortuuid
, tqdm , tqdm
@ -16,7 +17,7 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "dvc-objects"; pname = "dvc-objects";
version = "1.3.2"; version = "1.4.9";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -25,7 +26,7 @@ buildPythonPackage rec {
owner = "iterative"; owner = "iterative";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-30UnTbEHpGSgSGnhml7pXtPDivH9+NO7nvK4jEmRRUA="; hash = "sha256-9fuxlZDy83nl+rnVEFdAza1NHun8PdewgowMl3G5wZU=";
}; };
SETUPTOOLS_SCM_PRETEND_VERSION = version; SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -47,12 +48,18 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
pytest-mock pytest-mock
pytestCheckHook pytestCheckHook
reflink
]; ];
pythonImportsCheck = [ pythonImportsCheck = [
"dvc_objects" "dvc_objects"
]; ];
disabledTestPaths = [
# Disable benchmarking
"tests/benchmarks/"
];
meta = with lib; { meta = with lib; {
description = "Library for DVC objects"; description = "Library for DVC objects";
homepage = "https://github.com/iterative/dvc-objects"; homepage = "https://github.com/iterative/dvc-objects";