Unverified Commit 786cce0a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.dvc-data: 3.18.2 -> 3.18.3 (#495478)

parents 5f99f468 c9fe3a2f
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -7,26 +7,28 @@
  fetchPypi,
  knack,
  setuptools-scm,
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dvc-azure";
  version = "3.1.0";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    inherit (finalAttrs) pname version;
    hash = "sha256-UsvHDVQUtQIZs9sKFvaK0l2rp24/Igrr5OSbPGSYriA=";
  };

  # Prevent circular dependency
  pythonRemoveDeps = [ "dvc" ];

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
  dependencies = [
    adlfs
    azure-identity
    dvc-objects
@@ -43,8 +45,9 @@ buildPythonPackage rec {

  meta = {
    description = "Azure plugin for dvc";
    homepage = "https://pypi.org/project/dvc-azure/${version}";
    changelog = "https://github.com/iterative/dvc-azure/releases/tag/${version}";
    homepage = "https://pypi.org/project/dvc-azure/";
    changelog = "https://github.com/iterative/dvc-azure/releases/tag/${finalAttrs.version}";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}
})
+2 −2
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@

buildPythonPackage (finalAttrs: {
  pname = "dvc-data";
  version = "3.18.2";
  version = "3.18.3";
  pyproject = true;

  disabled = pythonOlder "3.12";
@@ -26,7 +26,7 @@ buildPythonPackage (finalAttrs: {
    owner = "iterative";
    repo = "dvc-data";
    tag = finalAttrs.version;
    hash = "sha256-3Zct/cOSxf8UYT4Kss4krWERrBatd5R3mcpDivsCIac=";
    hash = "sha256-0kEbkauFT2cVEuFUyKYtA37Vh/cn3O5H0PdEPsl9Bkk=";
  };

  build-system = [ setuptools-scm ];
+6 −6
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
  setuptools-scm,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dvc-gdrive";
  version = "3.0.1";
  pyproject = true;
@@ -16,16 +16,16 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "iterative";
    repo = "dvc-gdrive";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-oqHSMmwfR24ydJlpXGI3cCxIlF0BwNdgje5zKa0c7FA=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
  dependencies = [
    dvc
    pydrive2
  ];
@@ -38,8 +38,8 @@ buildPythonPackage rec {
  meta = {
    description = "Google Drive plugin for DVC";
    homepage = "https://github.com/iterative/dvc-gdrive";
    changelog = "https://github.com/iterative/dvc-gdrive/releases/tag/${version}";
    changelog = "https://github.com/iterative/dvc-gdrive/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})
+5 −4
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@
  setuptools-scm,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dvc-gs";
  version = "3.0.2";
  pyproject = true;

  src = fetchPypi {
    pname = "dvc_gs";
    inherit version;
    inherit (finalAttrs) version;
    hash = "sha256-c5aTwNglCjkHS6Fsfc51K7Wn/5NEQtYIH/z9ftkxO5o=";
  };

@@ -39,7 +39,8 @@ buildPythonPackage rec {
  meta = {
    description = "gs plugin for dvc";
    homepage = "https://pypi.org/project/dvc-gs/version";
    changelog = "https://github.com/iterative/dvc-gs/releases/tag/${version}";
    changelog = "https://github.com/iterative/dvc-gs/releases/tag/${finalAttrs.version}";
    license = lib.licenses.asl20;
    maintainers = [ ];
  };
}
})
+6 −6
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
  setuptools-scm,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "dvc-hdfs";
  version = "3.0.0";
  pyproject = true;
@@ -16,16 +16,16 @@ buildPythonPackage rec {
  src = fetchFromGitHub {
    owner = "iterative";
    repo = "dvc-hdfs";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-Bo8+El5GC7iyT8SxaJquWFG29BOeilmEMDtTG+RkDGI=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
  dependencies = [
    dvc
    fsspec
  ]
@@ -39,8 +39,8 @@ buildPythonPackage rec {
  meta = {
    description = "HDFS/WebHDFS plugin for dvc";
    homepage = "https://github.com/iterative/dvc-hdfs";
    changelog = "https://github.com/iterative/dvc-hdfs/releases/tag/${version}";
    changelog = "https://github.com/iterative/dvc-hdfs/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})
Loading