From 28c7ec91382fcae46e248ae04b28742f4ecfc2ef Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 30 Dec 2025 21:54:55 +0100 Subject: [PATCH] python313Packages.asttokens: 3.0.0-unstable-2025-11-08 -> 3.0.1 Changelog: https://github.com/gristlabs/asttokens/releases/tag/v3.0.1 --- .../development/python-modules/asttokens/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/asttokens/default.nix b/pkgs/development/python-modules/asttokens/default.nix index a1f257bc5c8b..e58acfa977d5 100644 --- a/pkgs/development/python-modules/asttokens/default.nix +++ b/pkgs/development/python-modules/asttokens/default.nix @@ -7,20 +7,18 @@ setuptools-scm, }: -buildPythonPackage { +buildPythonPackage rec { pname = "asttokens"; - version = "3.0.0-unstable-2025-11-08"; + version = "3.0.1"; pyproject = true; src = fetchFromGitHub { owner = "gristlabs"; repo = "asttokens"; - rev = "f859c055e8453650e1987c5aefaaec36582d3a07"; - hash = "sha256-dHtKyd5rj1Y7m1vTL9toyQ+GLV5fBNUFNkBM9t4e8yM="; + tag = "v${version}"; + hash = "sha256-1qkkNpjX89TmGD0z0KA2y+UbiHuEOaXzZ6hs9nw7EeM="; }; - env.SETUPTOOLS_SCM_PRETEND_VERSION = "3.0.0"; - build-system = [ setuptools-scm ]; nativeCheckInputs = [ @@ -43,6 +41,8 @@ buildPythonPackage { meta = { description = "Annotate Python AST trees with source text and token information"; homepage = "https://github.com/gristlabs/asttokens"; + changelog = "https://github.com/gristlabs/asttokens/releases/tag/${src.tag}"; license = lib.licenses.asl20; + maintainers = [ ]; }; }