python313Packages.container-inspector: modernize

This commit is contained in:
Fabian Affolter
2026-01-26 13:00:51 +01:00
parent 2b1021e63a
commit 1ccdb2a64a
@@ -10,7 +10,7 @@
setuptools-scm,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "container-inspector";
version = "33.1.0";
pyproject = true;
@@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "nexB";
repo = "container-inspector";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-uwfqPh4e5zNO0K5rKZ2pxgOkX/KF9pzCsKdYbQuw9MA=";
};
@@ -26,7 +26,7 @@ buildPythonPackage rec {
build-system = [ setuptools-scm ];
propagatedBuildInputs = [
dependencies = [
attrs
click
dockerfile-parse
@@ -40,8 +40,8 @@ buildPythonPackage rec {
meta = {
description = "Suite of analysis utilities and command line tools for container images";
homepage = "https://github.com/nexB/container-inspector";
changelog = "https://github.com/nexB/container-inspector/releases/tag/v${version}";
license = with lib.licenses; [ asl20 ];
changelog = "https://github.com/nexB/container-inspector/releases/tag/v${finalAttrs.src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})