From 2113555142f53614af6b79bdf6b95a3c35bf5a30 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 2 Nov 2025 15:29:37 +0000 Subject: [PATCH 1/2] python3Packages.nats-py: 2.11.0 -> 2.12.0 --- pkgs/development/python-modules/nats-py/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nats-py/default.nix b/pkgs/development/python-modules/nats-py/default.nix index 4eb1555f61b2..77c57c6a37e8 100644 --- a/pkgs/development/python-modules/nats-py/default.nix +++ b/pkgs/development/python-modules/nats-py/default.nix @@ -15,7 +15,7 @@ buildPythonPackage rec { pname = "nats-py"; - version = "2.11.0"; + version = "2.12.0"; pyproject = true; disabled = pythonOlder "3.7"; @@ -24,7 +24,7 @@ buildPythonPackage rec { owner = "nats-io"; repo = "nats.py"; tag = "v${version}"; - hash = "sha256-wILjBhdlNU8U2lyJm4CmPy4DzOjJ7cBIkawKwW5KVgg="; + hash = "sha256-HQtoFyw3Gi/lIQFVrFvRtWWzHTY+TchZYKqTiHfUWFk="; }; build-system = [ setuptools ]; From ed9152aa1275b34a0f2af2934d9a28a31b3bd4db Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 2 Nov 2025 23:55:39 +0100 Subject: [PATCH 2/2] python313Packages.nats-py: remove disabled --- pkgs/development/python-modules/nats-py/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/nats-py/default.nix b/pkgs/development/python-modules/nats-py/default.nix index 77c57c6a37e8..ea16db8dfc1d 100644 --- a/pkgs/development/python-modules/nats-py/default.nix +++ b/pkgs/development/python-modules/nats-py/default.nix @@ -8,7 +8,6 @@ nats-server, nkeys, pytestCheckHook, - pythonOlder, setuptools, uvloop, }: @@ -18,8 +17,6 @@ buildPythonPackage rec { version = "2.12.0"; pyproject = true; - disabled = pythonOlder "3.7"; - src = fetchFromGitHub { owner = "nats-io"; repo = "nats.py"; @@ -71,7 +68,7 @@ buildPythonPackage rec { description = "Python client for NATS.io"; homepage = "https://github.com/nats-io/nats.py"; changelog = "https://github.com/nats-io/nats.py/releases/tag/${src.tag}"; - license = with licenses; [ asl20 ]; + license = licenses.asl20; maintainers = with maintainers; [ fab ]; }; }