{ lib , buildPythonPackage , fetchFromGitHub , flatten-dict , fsspec , funcy , pygtrie , pytest-mock , pytestCheckHook , pythonOlder , setuptools-scm , shortuuid , tqdm , typing-extensions }: buildPythonPackage rec { pname = "dvc-objects"; version = "1.2.0"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "iterative"; repo = pname; rev = "refs/tags/${version}"; hash = "sha256-kTp0CowXtnLXetcnoCeqlXoadgaQhL5mTYTfq9QLIl8="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ flatten-dict fsspec funcy pygtrie shortuuid tqdm typing-extensions ]; nativeCheckInputs = [ pytest-mock pytestCheckHook ]; pythonImportsCheck = [ "dvc_objects" ]; meta = with lib; { description = "Library for DVC objects"; homepage = "https://github.com/iterative/dvc-objects"; changelog = "https://github.com/iterative/dvc-objects/releases/tag/${version}"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }