summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/cyclonedx-python-lib
diff options
context:
space:
mode:
authorIhar Hrachyshka <ihar.hrachyshka@gmail.com>2025-12-10 17:44:00 +0100
committerWolfgang Walther <walther@technowledgy.de>2025-12-10 18:09:49 +0100
commit567e8dfd8eddc5468e6380fc563ab8a27422ab1d (patch)
tree45e3f2c93ca5f9eb36a27cf219ae114638af0fd4 /pkgs/development/python-modules/cyclonedx-python-lib
parent8bbc115374ec64ab9f02e82f0d98c24feff8c16b (diff)
treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
Diffstat (limited to 'pkgs/development/python-modules/cyclonedx-python-lib')
-rw-r--r--pkgs/development/python-modules/cyclonedx-python-lib/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
index b87c39e09357..53b612c9c60a 100644
--- a/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
+++ b/pkgs/development/python-modules/cyclonedx-python-lib/default.nix
@@ -90,11 +90,11 @@ buildPythonPackage rec {
"tests/test_output_xml.py"
];
- meta = with lib; {
+ meta = {
description = "Python library for generating CycloneDX SBOMs";
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
changelog = "https://github.com/CycloneDX/cyclonedx-python-lib/releases/tag/${src.tag}";
- license = with licenses; [ asl20 ];
- maintainers = with maintainers; [ fab ];
+ license = with lib.licenses; [ asl20 ];
+ maintainers = with lib.maintainers; [ fab ];
};
}