python311Packages.httpbin 0 -> 1 attrpath: python311Packages.httpbin Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/qy6hzlyb9jqkbqjjq5rlbsmbs7h22qjp-packages.json.drv building '/nix/store/qy6hzlyb9jqkbqjjq5rlbsmbs7h22qjp-packages.json.drv'... Going to be running update for following packages: - python3.11-httpbin-0.10.1 Press Enter key to continue... Running update for: - python3.11-httpbin-0.10.1: UPDATING ... - python3.11-httpbin-0.10.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/httpbin/default.nix b/pkgs/development/python-modules/httpbin/default.nix index 0fbc8bc73ee9..aca2b849cd47 100644 --- a/pkgs/development/python-modules/httpbin/default.nix +++ b/pkgs/development/python-modules/httpbin/default.nix @@ -26,12 +26,12 @@ buildPythonPackage rec { pname = "httpbin"; - version = "0.10.1"; + version = "0.10.2"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-e4WWvrDnWntlPDnR888mPW1cR20p4d9ve7K3C/nwaj0="; + hash = "sha256-YyFIaYJhyGhOotK2JM3qhFtAKx/pFzbonfiGQIxjF6k="; }; patches = [ No auto update branch exists Old version 0.10.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , pythonRelaxDepsHook # build-system , setuptools # dependencies , brotlicffi , decorator , flasgger , flask , greenlet , six , werkzeug # optional-dependencies , gunicorn , gevent # tests , pytestCheckHook }: buildPythonPackage rec { pname = "httpbin"; version = "0.10.2"; format = "pyproject"; src = fetchPypi { inherit pname version; hash = "sha256-YyFIaYJhyGhOotK2JM3qhFtAKx/pFzbonfiGQIxjF6k="; }; nativeBuildInputs = [ setuptools pythonRelaxDepsHook ]; pythonRelaxDeps = [ "greenlet" ]; propagatedBuildInputs = [ brotlicffi decorator flask flasgger greenlet six werkzeug ]; passthru.optional-dependencies = { mainapp = [ gunicorn gevent ]; }; nativeCheckInputs = [ pytestCheckHook ]; disabledTests = [ # Tests seems to be outdated "test_anything" "test_get" "test_redirect_n_equals_to_1" "test_redirect_n_higher_than_1" "test_redirect_to_post" "test_relative_redirect_n_equals_to_1" "test_relative_redirect_n_higher_than_1" ]; pythonImportsCheck = [ "httpbin" ]; meta = with lib; { description = "HTTP Request and Response Service"; homepage = "https://github.com/psf/httpbin"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }