0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

python312Packages.aiosseclient: 0.1.3 -> 0.1.6

This commit is contained in:
R. Ryantm 2025-03-03 20:34:07 +00:00
parent 789d5d0633
commit 6b03e9fedd

View file

@ -8,14 +8,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "aiosseclient"; pname = "aiosseclient";
version = "0.1.3"; version = "0.1.6";
pyproject = true; pyproject = true;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ebraminio"; owner = "ebraminio";
repo = "aiosseclient"; repo = "aiosseclient";
rev = version; tag = version;
hash = "sha256-T97HmO53w1zNpASPU+LRcnqtnQVqPWtlOXycpBw4WmY="; hash = "sha256-jXDZPVkCTVwcz1TCiPRGJZkq2KeqOglAZNY//LmLuNg=";
}; };
build-system = [ setuptools ]; build-system = [ setuptools ];
@ -30,7 +30,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Asynchronous Server Side Events (SSE) client"; description = "Asynchronous Server Side Events (SSE) client";
homepage = "https://github.com/ebraminio/aiosseclient"; homepage = "https://github.com/ebraminio/aiosseclient";
changelog = "https://github.com/ebraminio/aiosseclient/releases/tag/${version}"; changelog = "https://github.com/ebraminio/aiosseclient/releases/tag/${src.tag}";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ]; maintainers = with lib.maintainers; [ fab ];
}; };