python311Packages.dvc-azure: 2.22.1 -> 3.0.1

Changelog: https://github.com/iterative/dvc-azure/releases/tag/3.0.1
This commit is contained in:
Fabian Affolter 2023-12-28 14:07:54 +01:00
parent 4eb07b724b
commit 900c56ecab

View File

@ -6,34 +6,46 @@
, fetchPypi
, knack
, pythonRelaxDepsHook
, setuptools-scm }:
, setuptools-scm
}:
buildPythonPackage rec {
pname = "dvc-azure";
version = "2.22.1";
format = "setuptools";
version = "3.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-v3VRCN1OoST5RlfUOP9Dpfmf3o9C/ckusmh91Ya2Cik=";
hash = "sha256-TB7yY5b2AWBFt8+AnxyKyP6hoXi6cdHVjtffapRVfHc=";
};
# Prevent circular dependency
pythonRemoveDeps = [ "dvc" ];
pythonRemoveDeps = [
"dvc"
];
nativeBuildInputs = [ setuptools-scm pythonRelaxDepsHook ];
nativeBuildInputs = [
setuptools-scm
pythonRelaxDepsHook
];
propagatedBuildInputs = [
adlfs azure-identity dvc-objects knack
adlfs
azure-identity
dvc-objects
knack
];
# Network access is needed for tests
doCheck = false;
pythonImportsCheck = [ "dvc_azure" ];
# Circular dependency
# pythonImportsCheck = [
# "dvc_azure"
# ];
meta = with lib; {
description = "azure plugin for dvc";
description = "Azure plugin for dvc";
homepage = "https://pypi.org/project/dvc-azure/${version}";
changelog = "https://github.com/iterative/dvc-azure/releases/tag/${version}";
license = licenses.asl20;