{ lib, aiohttp-retry, asyncssh, buildPythonPackage, dulwich, fetchFromGitHub, fsspec, funcy, gitpython, pathspec, pygit2, pygtrie, setuptools, setuptools-scm, tqdm, }: buildPythonPackage rec { pname = "scmrepo"; version = "3.6.1"; pyproject = true; src = fetchFromGitHub { owner = "iterative"; repo = "scmrepo"; tag = version; hash = "sha256-nkHEeslQM+F4PpNrrbSql+jCJDHmdaGfGkciluhXmHo="; }; build-system = [ setuptools setuptools-scm ]; dependencies = [ aiohttp-retry asyncssh dulwich fsspec funcy gitpython pathspec pygit2 pygtrie tqdm ]; # Requires a running Docker instance doCheck = false; pythonImportsCheck = [ "scmrepo" ]; meta = { description = "SCM wrapper and fsspec filesystem"; homepage = "https://github.com/iterative/scmrepo"; changelog = "https://github.com/iterative/scmrepo/releases/tag/${src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; }