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/rangehttpserver | |
| parent | 558250507ecca4df5b6dddd71512c33c78eb3b29 (diff) | |
| parent | 567e8dfd8eddc5468e6380fc563ab8a27422ab1d (diff) | |
treewide: clean up 'meta = with' pattern (#443046)
Diffstat (limited to 'pkgs/development/python-modules/rangehttpserver')
| -rw-r--r-- | pkgs/development/python-modules/rangehttpserver/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/rangehttpserver/default.nix b/pkgs/development/python-modules/rangehttpserver/default.nix index d9c4512090fd..0b124dbd616d 100644 --- a/pkgs/development/python-modules/rangehttpserver/default.nix +++ b/pkgs/development/python-modules/rangehttpserver/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pythonImportsCheck = [ "RangeHTTPServer" ]; - meta = with lib; { + meta = { description = "SimpleHTTPServer with support for Range requests"; homepage = "https://github.com/danvk/RangeHTTPServer"; changelog = "https://github.com/danvk/RangeHTTPServer/releases/tag/${version}"; - license = licenses.asl20; - maintainers = with maintainers; [ fab ]; + license = lib.licenses.asl20; + maintainers = with lib.maintainers; [ fab ]; }; } |
