From 321e4a5a9fd07eb6ffa7dd61f4284015012a772e Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sun, 30 Oct 2022 12:45:06 +0100 Subject: [PATCH] python3Packages.sphinxext-opengraph: 0.6.3 -> 0.7.3 https://github.com/wpilibsuite/sphinxext-opengraph/releases/tag/v0.7.3 --- .../python-modules/sphinxext-opengraph/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/sphinxext-opengraph/default.nix b/pkgs/development/python-modules/sphinxext-opengraph/default.nix index 76e5079e9163..b333d508e106 100644 --- a/pkgs/development/python-modules/sphinxext-opengraph/default.nix +++ b/pkgs/development/python-modules/sphinxext-opengraph/default.nix @@ -4,19 +4,26 @@ , sphinx , pytestCheckHook , beautifulsoup4 +, setuptools-scm }: buildPythonPackage rec { pname = "sphinxext-opengraph"; - version = "0.6.3"; + version = "0.7.3"; src = fetchFromGitHub { owner = "wpilibsuite"; repo = "sphinxext-opengraph"; rev = "v${version}"; - sha256 = "sha256-YR6TlsmND5IhLdbPbmtVhRN2vSZfx70g2a6Yn6y6L/M="; + hash = "sha256-KzbtuDTMXsp9yf3hiiG6VzpUbSEm3bOtujApsG37H14="; }; + SETUPTOOLS_SCM_PRETEND_VERSION = version; + + nativeBuildInputs = [ + setuptools-scm + ]; + propagatedBuildInputs = [ sphinx ];