diff options
| author | Jozef HollĂ˝ <1708197+j2ghz@users.noreply.github.com> | 2024-11-09 13:07:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-09 13:07:47 +0100 |
| commit | ba83a0dba006b4e587dcdd9601adfbb5e0b18061 (patch) | |
| tree | acecb0ecdf0d4c6bb625daabdadb9139efff6081 /pkgs/development/python-modules/rangehttpserver | |
| parent | a96dce89d04813c5cce8eb967cc2dd3640aa016c (diff) | |
| parent | b5f67acfbf3cb6155ab492b02690da714dbf88d2 (diff) | |
Merge branch 'master' into patch-1
Diffstat (limited to 'pkgs/development/python-modules/rangehttpserver')
| -rw-r--r-- | pkgs/development/python-modules/rangehttpserver/default.nix | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/rangehttpserver/default.nix b/pkgs/development/python-modules/rangehttpserver/default.nix index bab8f73b412b..9317045da4de 100644 --- a/pkgs/development/python-modules/rangehttpserver/default.nix +++ b/pkgs/development/python-modules/rangehttpserver/default.nix @@ -1,37 +1,34 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, setuptools -, pytestCheckHook -, requests +{ + lib, + buildPythonPackage, + fetchFromGitHub, + setuptools, + pytest7CheckHook, + requests, }: buildPythonPackage rec { pname = "rangehttpserver"; - version = "1.3.3"; + version = "1.4.0"; format = "pyproject"; src = fetchFromGitHub { owner = "danvk"; repo = "RangeHTTPServer"; rev = "refs/tags/${version}"; - hash = "sha256-ZXEbis37QO8t05JQ2qQQf5rkUSxq3DwzR3khAJkZ5W0="; + hash = "sha256-wvGJ5wHYLb7wJUGgurkdRTABV6kTH7/GXzXgpd0Ypbc="; }; - nativeBuildInputs = [ - setuptools - ]; + nativeBuildInputs = [ setuptools ]; __darwinAllowLocalNetworking = true; nativeCheckInputs = [ - pytestCheckHook + pytest7CheckHook requests ]; - pythonImportsCheck = [ - "RangeHTTPServer" - ]; + pythonImportsCheck = [ "RangeHTTPServer" ]; meta = with lib; { description = "SimpleHTTPServer with support for Range requests"; |
