e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, sphinx
|
|
, matplotlib
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, beautifulsoup4
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxext-opengraph";
|
|
version = "0.9.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wpilibsuite";
|
|
repo = "sphinxext-opengraph";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-B+bJ1tKqTTlbNeJLxk56o2a21n3Yg6OHwJiFfCx46aw=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
social_cards_generation = [
|
|
matplotlib
|
|
];
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
sphinx
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
beautifulsoup4
|
|
] ++ passthru.optional-dependencies.social_cards_generation;
|
|
|
|
pythonImportsCheck = [ "sphinxext.opengraph" ];
|
|
|
|
meta = with lib; {
|
|
description = "Sphinx extension to generate unique OpenGraph metadata";
|
|
homepage = "https://github.com/wpilibsuite/sphinxext-opengraph";
|
|
changelog = "https://github.com/wpilibsuite/sphinxext-opengraph/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ Luflosi ];
|
|
};
|
|
}
|