python3Packages.dvc: 3.64.1 -> 3.66.1 (#469481)
This commit is contained in:
@@ -62,16 +62,16 @@
|
||||
enableSSH ? false,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "dvc";
|
||||
version = "3.64.1";
|
||||
version = "3.66.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "iterative";
|
||||
repo = "dvc";
|
||||
tag = version;
|
||||
hash = "sha256-zbqxJ6rlxiYZWFYmdqAlu00jkMLS0aIabVqMy5NAvUk=";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-IvO5JEM3P0ggmufrBFv7fUBwoKzNIgWMUnOo31rYJRk=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [
|
||||
@@ -132,10 +132,10 @@ buildPythonPackage rec {
|
||||
voluptuous
|
||||
zc-lockfile
|
||||
]
|
||||
++ 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 enableGoogle finalAttrs.passthru.optional-dependencies.gs
|
||||
++ lib.optionals enableAWS finalAttrs.passthru.optional-dependencies.s3
|
||||
++ lib.optionals enableAzure finalAttrs.passthru.optional-dependencies.azure
|
||||
++ lib.optionals enableSSH finalAttrs.passthru.optional-dependencies.ssh;
|
||||
|
||||
optional-dependencies = {
|
||||
azure = [ dvc-azure ];
|
||||
@@ -162,7 +162,7 @@ buildPythonPackage rec {
|
||||
meta = {
|
||||
description = "Version Control System for Machine Learning Projects";
|
||||
homepage = "https://dvc.org";
|
||||
changelog = "https://github.com/iterative/dvc/releases/tag/${src.tag}";
|
||||
changelog = "https://github.com/iterative/dvc/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [
|
||||
cmcdragonkai
|
||||
@@ -170,4 +170,4 @@ buildPythonPackage rec {
|
||||
];
|
||||
mainProgram = "dvc";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user