diff options
| author | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 16:01:06 +0200 |
|---|---|---|
| committer | Martin Weinelt <hexa@darmstadt.ccc.de> | 2024-05-22 17:32:03 +0200 |
| commit | 59b1aef59071cae6e87859dc65de973d2cc595c0 (patch) | |
| tree | 18c3aaf31188cb7430359a1bb130d637a363351e /pkgs/development/python-modules/rangehttpserver | |
| parent | 691216eca3d0ce5ad6ac10562e75910fa02415b0 (diff) | |
python3Packages: format with nixfmt
Diffstat (limited to 'pkgs/development/python-modules/rangehttpserver')
| -rw-r--r-- | pkgs/development/python-modules/rangehttpserver/default.nix | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/rangehttpserver/default.nix b/pkgs/development/python-modules/rangehttpserver/default.nix index 6fbcebbffed8..a357f2138052 100644 --- a/pkgs/development/python-modules/rangehttpserver/default.nix +++ b/pkgs/development/python-modules/rangehttpserver/default.nix @@ -1,9 +1,10 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, pytest7CheckHook -, requests +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + pytest7CheckHook, + requests, }: buildPythonPackage rec { @@ -18,9 +19,7 @@ buildPythonPackage rec { hash = "sha256-ZXEbis37QO8t05JQ2qQQf5rkUSxq3DwzR3khAJkZ5W0="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; __darwinAllowLocalNetworking = true; @@ -29,9 +28,7 @@ buildPythonPackage rec { requests ]; - pythonImportsCheck = [ - "RangeHTTPServer" - ]; + pythonImportsCheck = [ "RangeHTTPServer" ]; meta = with lib; { description = "SimpleHTTPServer with support for Range requests"; |
