summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-docs-theme
diff options
context:
space:
mode:
authorWolfgang Walther <walther@technowledgy.de>2025-12-10 17:23:38 +0000
committerGitHub <noreply@github.com>2025-12-10 17:23:38 +0000
commitaf6d3ec4ba8ead90c5407e751985adec821b8cd2 (patch)
tree7fd03d92ada398363a5492c74289670834704392 /pkgs/development/python-modules/python-docs-theme
parent558250507ecca4df5b6dddd71512c33c78eb3b29 (diff)
parent567e8dfd8eddc5468e6380fc563ab8a27422ab1d (diff)
treewide: clean up 'meta = with' pattern (#443046)
Diffstat (limited to 'pkgs/development/python-modules/python-docs-theme')
-rw-r--r--pkgs/development/python-modules/python-docs-theme/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/python-docs-theme/default.nix b/pkgs/development/python-modules/python-docs-theme/default.nix
index 6c8e0daf0b38..efb296b45dad 100644
--- a/pkgs/development/python-modules/python-docs-theme/default.nix
+++ b/pkgs/development/python-modules/python-docs-theme/default.nix
@@ -27,11 +27,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "python_docs_theme" ];
- meta = with lib; {
+ meta = {
description = "Sphinx theme for CPython project";
homepage = "https://github.com/python/python-docs-theme";
changelog = "https://github.com/python/python-docs-theme/blob/${src.tag}/CHANGELOG.rst";
- license = licenses.psfl;
- maintainers = with maintainers; [ kaction ];
+ license = lib.licenses.psfl;
+ maintainers = with lib.maintainers; [ kaction ];
};
}