From b8bfdf021902418a517b28d835c8369c7fb52ae1 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:18:34 +0100 Subject: [PATCH] python3Packages.sphinxcontrib-spelling: 8.0.0 -> 8.0.1 https://github.com/sphinx-contrib/spelling/blob/8.0.1/docs/source/history.rst --- .../sphinxcontrib-spelling/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix b/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix index 6bff5f2fc6c7..fe9adf17db31 100644 --- a/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-spelling/default.nix @@ -1,7 +1,7 @@ { lib, buildPythonPackage, - fetchPypi, + fetchFromGitHub, pythonOlder, importlib-metadata, sphinx, @@ -13,14 +13,16 @@ buildPythonPackage rec { pname = "sphinxcontrib-spelling"; - version = "8.0.0"; + version = "8.0.1"; format = "pyproject"; disabled = pythonOlder "3.7"; - src = fetchPypi { - inherit pname version; - hash = "sha256-GZ0KFpAq2Aw4fClm3J6xD1ZbH7FczOFyEEAtt8JEPlw="; + src = fetchFromGitHub { + owner = "sphinx-contrib"; + repo = "spelling"; + tag = version; + hash = "sha256-gN+FkgIzk7wG/ni+DzaeiePjCiK9k7Jrn2IUDgy8DOg="; }; nativeBuildInputs = [