Commit c9bb3ce5 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.dvc: adjust inputs

parent 071c6e6c
Loading
Loading
Loading
Loading
+14 −6
Original line number Diff line number Diff line
{
  lib,
  appdirs,
  attrs,
  buildPythonPackage,
  celery,
  colorama,
  configobj,
  dulwich,
  distro,
  dpath,
  dvc-azure,
@@ -22,6 +24,7 @@
  fetchFromGitHub,
  flatten-dict,
  flufl-lock,
  fsspec,
  funcy,
  grandalf,
  gto,
@@ -29,7 +32,9 @@
  importlib-metadata,
  importlib-resources,
  iterative-telemetry,
  kombu,
  networkx,
  omegaconf,
  packaging,
  pathspec,
  platformdirs,
@@ -62,7 +67,7 @@ buildPythonPackage rec {
  version = "3.59.1";
  pyproject = true;

  disabled = pythonOlder "3.8";
  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "iterative";
@@ -87,11 +92,13 @@ buildPythonPackage rec {

  dependencies =
    [
      appdirs
      attrs
      celery
      colorama
      configobj
      distro
      dpath
      dulwich
      dvc-data
      dvc-http
      dvc-render
@@ -99,12 +106,15 @@ buildPythonPackage rec {
      dvc-task
      flatten-dict
      flufl-lock
      fsspec
      funcy
      grandalf
      gto
      hydra-core
      iterative-telemetry
      kombu
      networkx
      omegaconf
      packaging
      pathspec
      platformdirs
@@ -128,9 +138,7 @@ buildPythonPackage rec {
    ++ lib.optionals enableGoogle optional-dependencies.gs
    ++ lib.optionals enableAWS optional-dependencies.s3
    ++ lib.optionals enableAzure optional-dependencies.azure
    ++ lib.optionals enableSSH optional-dependencies.ssh
    ++ lib.optionals (pythonOlder "3.8") [ importlib-metadata ]
    ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
    ++ lib.optionals enableSSH optional-dependencies.ssh;

  optional-dependencies = {
    azure = [ dvc-azure ];