lol

Merge pull request #220627 from fabaff/rangehttpserver-bump

python310Packages.rangehttpserver: 1.2.0 -> 1.3.3

authored by

Fabian Affolter and committed by
GitHub
b04384c6 8ca96048

+6 -11
+6 -11
pkgs/development/python-modules/rangehttpserver/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , setuptools 5 - , nose 5 + , pytestCheckHook 6 6 , requests 7 7 }: 8 8 9 9 buildPythonPackage rec { 10 10 pname = "rangehttpserver"; 11 - version = "1.2.0"; 11 + version = "1.3.3"; 12 12 format = "pyproject"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "danvk"; 16 16 repo = "RangeHTTPServer"; 17 - rev = version; 18 - sha256 = "1sy9j6y8kp5jiwv2vd652v94kspp1yd4dwxrfqfn6zwnfyv2mzv5"; 17 + rev = "refs/tags/${version}"; 18 + hash = "sha256-ZXEbis37QO8t05JQ2qQQf5rkUSxq3DwzR3khAJkZ5W0="; 19 19 }; 20 20 21 21 nativeBuildInputs = [ ··· 23 23 ]; 24 24 25 25 nativeCheckInputs = [ 26 - nose 26 + pytestCheckHook 27 27 requests 28 28 ]; 29 29 30 - checkPhase = '' 31 - runHook preCheck 32 - nosetests 33 - runHook postCheck 34 - ''; 35 - 36 30 pythonImportsCheck = [ 37 31 "RangeHTTPServer" 38 32 ]; ··· 40 34 meta = with lib; { 41 35 description = "SimpleHTTPServer with support for Range requests"; 42 36 homepage = "https://github.com/danvk/RangeHTTPServer"; 37 + changelog = "https://github.com/danvk/RangeHTTPServer/releases/tag/${version}"; 43 38 license = licenses.asl20; 44 39 maintainers = with maintainers; [ fab ]; 45 40 };