a425ba4985
GitOrigin-RevId: 5b091d4fbe3b7b7493c3b46fe0842e4b30ea24b3
38 lines
700 B
Nix
38 lines
700 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, sphinx
|
|
, actdiag
|
|
, blockdiag
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sphinxcontrib-actdiag";
|
|
version = "3.0.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-PFXUVP/Due/nwg8q2vAiGZuCVhLTLyAL6KSXqofg+B8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
actdiag
|
|
blockdiag
|
|
sphinx
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"sphinxcontrib.actdiag"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Sphinx actdiag extension";
|
|
homepage = "https://github.com/blockdiag/sphinxcontrib-actdiag";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|