2021-05-20 23:08:51 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, sphinx
|
|
|
|
, blockdiag
|
|
|
|
, seqdiag
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sphinxcontrib-seqdiag";
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "3.0.0";
|
2021-05-20 23:08:51 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-19 01:06:50 +00:00
|
|
|
hash = "sha256-QH5IeXZz9x2Ujp/6BHFsrB2ZqeyPYW3jdk1C0DNBZXQ=";
|
2021-05-20 23:08:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ sphinx blockdiag seqdiag ];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "sphinxcontrib.seqdiag" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Sphinx seqdiag extension";
|
|
|
|
homepage = "https://github.com/blockdiag/sphinxcontrib-seqdiag";
|
|
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
|
|
license = licenses.bsd2;
|
|
|
|
};
|
|
|
|
}
|