diff options
| author | Wolfgang Walther <walther@technowledgy.de> | 2025-12-10 17:23:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-10 17:23:38 +0000 |
| commit | af6d3ec4ba8ead90c5407e751985adec821b8cd2 (patch) | |
| tree | 7fd03d92ada398363a5492c74289670834704392 /pkgs/development/python-modules/pytest-httpserver | |
| parent | 558250507ecca4df5b6dddd71512c33c78eb3b29 (diff) | |
| parent | 567e8dfd8eddc5468e6380fc563ab8a27422ab1d (diff) | |
treewide: clean up 'meta = with' pattern (#443046)
Diffstat (limited to 'pkgs/development/python-modules/pytest-httpserver')
| -rw-r--r-- | pkgs/development/python-modules/pytest-httpserver/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-httpserver/default.nix b/pkgs/development/python-modules/pytest-httpserver/default.nix index bf2016701dde..c4d785aa7666 100644 --- a/pkgs/development/python-modules/pytest-httpserver/default.nix +++ b/pkgs/development/python-modules/pytest-httpserver/default.nix @@ -42,11 +42,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "pytest_httpserver" ]; - meta = with lib; { + meta = { description = "HTTP server for pytest to test HTTP clients"; homepage = "https://www.github.com/csernazs/pytest-httpserver"; changelog = "https://github.com/csernazs/pytest-httpserver/blob/${src.tag}/CHANGES.rst"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ fab ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ fab ]; }; } |
