Merge pull request #263973 from Luflosi/update/python3Packages.sphinxext-opengraph

python3Packages.sphinxext-opengraph: 0.8.2 -> 0.9.0
This commit is contained in:
OTABI Tomoya 2023-11-15 21:03:07 +09:00 committed by GitHub
commit c4e178195d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,16 +11,16 @@
buildPythonPackage rec {
pname = "sphinxext-opengraph";
version = "0.8.2";
version = "0.9.0";
format = "setuptools";
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "wpilibsuite";
repo = "sphinxext-opengraph";
rev = "refs/tags/v${version}";
hash = "sha256-SrZTtVzEp4E87fzisWKHl8iRP49PWt5kkJq62CqXrBc=";
hash = "sha256-ZLIxbFgayG+WVvSXu74eZJ/PbSHg6dzkkIr1OBry4DE=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
@ -29,15 +29,20 @@ buildPythonPackage rec {
setuptools-scm
];
passthru.optional-dependencies = {
social_cards_generation = [
matplotlib
];
};
propagatedBuildInputs = [
sphinx
matplotlib
];
nativeCheckInputs = [
pytestCheckHook
beautifulsoup4
];
] ++ passthru.optional-dependencies.social_cards_generation;
pythonImportsCheck = [ "sphinxext.opengraph" ];