ytcc: 2.7.2 -> 2.8.0 (#437712)

Changed files
+8 -3
pkgs
by-name
yt
+8 -3
pkgs/by-name/yt/ytcc/package.nix
···
versionCheckHook,
}:
-
python3Packages.buildPythonApplication rec {
+
let
+
version = "2.8.0";
+
in
+
python3Packages.buildPythonApplication {
pname = "ytcc";
-
version = "2.7.2";
+
inherit version;
pyproject = true;
src = fetchFromGitHub {
owner = "woefe";
repo = "ytcc";
tag = "v${version}";
-
hash = "sha256-PNSkIp6CJvgirO3k2lB0nOVEC1+znhn3/OyRIJ1EANI=";
+
hash = "sha256-6Z5xoGbOtJnPlPj5GS9ElRkuuNd+ON9RsZyl5VLzLE0=";
};
build-system = with python3Packages; [ hatchling ];
···
wcwidth
defusedxml
];
+
+
pythonRelaxDeps = [ "click" ];
nativeCheckInputs =
with python3Packages;