lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.httpx-sse: 0.4.0 -> 0.4.1

Changelog: https://github.com/florimondmanca/httpx-sse/blob/refs/tags/0.4.1/CHANGELOG.md

+6 -19
+6 -19
pkgs/development/python-modules/httpx-sse/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 - fetchpatch2, 6 - setuptools, 7 - setuptools-scm, 8 - wheel, 9 5 httpx, 10 6 pytest-asyncio, 7 + pytest-cov-stub, 11 8 pytestCheckHook, 9 + setuptools-scm, 10 + setuptools, 12 11 sse-starlette, 13 12 }: 14 13 15 14 buildPythonPackage rec { 16 15 pname = "httpx-sse"; 17 - version = "0.4.0"; 16 + version = "0.4.1"; 18 17 pyproject = true; 19 18 20 19 src = fetchFromGitHub { 21 20 owner = "florimondmanca"; 22 21 repo = "httpx-sse"; 23 22 tag = version; 24 - hash = "sha256-nU8vkmV/WynzQrSrq9+FQXtfAJPVLpMsRSuntU0HWrE="; 23 + hash = "sha256-bSozSZmbRU5sc3jvVUOAXQWVBA8GhzM2R26uPdabS+w="; 25 24 }; 26 25 27 - patches = [ 28 - (fetchpatch2 { 29 - url = "https://github.com/florimondmanca/httpx-sse/commit/643938c805e671fa20adcf314b447f862b77bcda.patch?full_index=1"; 30 - hash = "sha256-V2PyTlleyoLa0DuvdlU8zGNsI9C8bTjMUcLjx81/e5k="; 31 - }) 32 - ]; 33 - 34 - # pytest-cov configuration is not necessary for packaging 35 - postPatch = '' 36 - rm setup.cfg 37 - ''; 38 - 39 26 build-system = [ 40 27 setuptools 41 28 setuptools-scm 42 - wheel 43 29 ]; 44 30 45 31 dependencies = [ httpx ]; ··· 48 34 49 35 nativeCheckInputs = [ 50 36 pytest-asyncio 37 + pytest-cov-stub 51 38 pytestCheckHook 52 39 sse-starlette 53 40 ];