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

python3Packages.sphinxext-opengraph: 0.4.2 -> 0.5.1
This commit is contained in:
Bobby Rong 2021-12-18 23:08:48 +08:00 committed by GitHub
commit 29a954c26e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,24 +2,29 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, sphinx , sphinx
, pytestCheckHook
, beautifulsoup4
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "sphinxext-opengraph"; pname = "sphinxext-opengraph";
version = "0.4.2"; version = "0.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wpilibsuite"; owner = "wpilibsuite";
repo = "sphinxext-opengraph"; repo = "sphinxext-opengraph";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-978aPtaqUDHcswDdFynzi+IjDYaBmCZDZk+dmDkhajY="; sha256 = "sha256-US0UXxcTlN7x5v2ilpL+umTr7tadqthqhvfaQnm7tCc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
sphinx sphinx
]; ];
doCheck = false; # no tests checkInputs = [
pytestCheckHook
beautifulsoup4
];
pythonImportsCheck = [ "sphinxext.opengraph" ]; pythonImportsCheck = [ "sphinxext.opengraph" ];