python312Packages.scmrepo: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-27 15:11:22 +02:00
parent 202686c284
commit 596f33317f

View file

@ -1,20 +1,21 @@
{ lib {
, asyncssh lib,
, buildPythonPackage asyncssh,
, dulwich buildPythonPackage,
, dvc-http dulwich,
, dvc-objects dvc-http,
, fetchFromGitHub dvc-objects,
, fsspec fetchFromGitHub,
, funcy fsspec,
, gitpython funcy,
, pathspec gitpython,
, pygit2 pathspec,
, pygtrie pygit2,
, pythonOlder pygtrie,
, setuptools pythonOlder,
, setuptools-scm setuptools,
, shortuuid setuptools-scm,
shortuuid,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -53,9 +54,7 @@ buildPythonPackage rec {
# Requires a running Docker instance # Requires a running Docker instance
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [ "scmrepo" ];
"scmrepo"
];
meta = with lib; { meta = with lib; {
description = "SCM wrapper and fsspec filesystem"; description = "SCM wrapper and fsspec filesystem";