diff options
| author | Martin Weinelt <mweinelt@users.noreply.github.com> | 2024-05-22 17:58:05 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-22 17:58:05 +0200 |
| commit | 37d23f4b3b29612cc1fb5a5227b62fbdeaca8b6f (patch) | |
| tree | 056b53416f5aeb9aaedd2317d590ff98538a5cf9 /pkgs/development/python-modules/rangehttpserver | |
| parent | eb3e5c5f0d67368067c2618a49db2341c1362e4d (diff) | |
| parent | 42961a65a97bcd9291a9693ddf89bceee7aba2f2 (diff) | |
Merge pull request #313628 from mweinelt/python-nixfmt
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"; |
