diff --git a/pkgs/development/python-modules/responses/default.nix b/pkgs/development/python-modules/responses/default.nix index c549b86bbf16..a1e21b8fbcdc 100644 --- a/pkgs/development/python-modules/responses/default.nix +++ b/pkgs/development/python-modules/responses/default.nix @@ -5,8 +5,11 @@ , pytest-httpserver , pytestCheckHook , pythonOlder +, pyyaml , requests -, toml +, tomli +, tomli-w +, types-pyyaml , types-toml , typing-extensions , urllib3 @@ -14,7 +17,7 @@ buildPythonPackage rec { pname = "responses"; - version = "0.22.0"; + version = "0.23.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -24,13 +27,14 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "getsentry"; repo = pname; - rev = version; - hash = "sha256-VOIpowxPvYmufnj9MM/vMtZQDIOxorAhMCNK0fX/j1U="; + rev = "refs/tags/${version}"; + hash = "sha256-BU90nUZVqowFMn78KfbBEf59X7Q/1itvkGFdOzy4D2c="; }; propagatedBuildInputs = [ + pyyaml requests - toml + types-pyyaml types-toml urllib3 ] ++ lib.optionals (pythonOlder "3.8") [ @@ -42,6 +46,9 @@ buildPythonPackage rec { pytest-asyncio pytest-httpserver pytestCheckHook + tomli-w + ] ++ lib.optionals (pythonOlder "3.11") [ + tomli ]; pythonImportsCheck = [ @@ -51,6 +58,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module for mocking out the requests Python library"; homepage = "https://github.com/getsentry/responses"; + changelog = "https://github.com/getsentry/responses/blob/${version}/CHANGES"; license = licenses.asl20; maintainers = with maintainers; [ fab ]; };