dae973cb59
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, sphinx
|
|
, matplotlib
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, beautifulsoup4
|
|
, setuptools-scm
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxext-opengraph";
|
|
version = "0.8.1";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "wpilibsuite";
|
|
repo = "sphinxext-opengraph";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-3q/OKkLtyA1Dw2PfTT4Fmzyn5qPbjprekpE7ItnFNUo=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
sphinx
|
|
matplotlib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
beautifulsoup4
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|