summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/rangehttpserver
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2024-05-23 00:13:17 +0000
committerGitHub <noreply@github.com>2024-05-23 00:13:17 +0000
commit91c2e446669331ea416f5c9043839f7e73208413 (patch)
tree2676a45187fcb97982aedd3f0fc7b6537ffe61ed /pkgs/development/python-modules/rangehttpserver
parent7707b7468c62aa4abf0232a25d9546336b6098f6 (diff)
parent06b2dd21c06a753983a26ecfee51e8662c930ec7 (diff)
Merge master into haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/rangehttpserver')
-rw-r--r--pkgs/development/python-modules/rangehttpserver/default.nix21
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";