Merge pull request #150888 from Luflosi/update/python3Packages.sphinxext-opengraph
python3Packages.sphinxext-opengraph: 0.4.2 -> 0.5.1
This commit is contained in:
commit
29a954c26e
1 changed files with 8 additions and 3 deletions
|
@ -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" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue