sphinxcontrib-seqdiag: init at 2.0.0
Signed-off-by: David Wood <david.wood@codeplay.com>
This commit is contained in:
parent
6f7e844cb6
commit
efbdade432
|
@ -0,0 +1,28 @@
|
||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, sphinx
|
||||||
|
, blockdiag
|
||||||
|
, seqdiag
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "sphinxcontrib-seqdiag";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
hash = "sha256-THJ1ra/W2X/lQaDjGbL27VMn0lWPJApwgKMrPhL0JY0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -7728,6 +7728,8 @@ in {
|
||||||
|
|
||||||
sphinxcontrib-serializinghtml = callPackage ../development/python-modules/sphinxcontrib-serializinghtml { };
|
sphinxcontrib-serializinghtml = callPackage ../development/python-modules/sphinxcontrib-serializinghtml { };
|
||||||
|
|
||||||
|
sphinxcontrib-seqdiag = callPackage ../development/python-modules/sphinxcontrib-seqdiag { };
|
||||||
|
|
||||||
sphinxcontrib-spelling = callPackage ../development/python-modules/sphinxcontrib-spelling { };
|
sphinxcontrib-spelling = callPackage ../development/python-modules/sphinxcontrib-spelling { };
|
||||||
|
|
||||||
sphinxcontrib-tikz = callPackage ../development/python-modules/sphinxcontrib-tikz {
|
sphinxcontrib-tikz = callPackage ../development/python-modules/sphinxcontrib-tikz {
|
||||||
|
|
Loading…
Reference in New Issue