python-packages: add sphinxcontrib-plantuml-0.5
- Tested with Python 2.6, 2.7, 3.3 and 3.4. - Fails with pypy due to issue #6548.
This commit is contained in:
parent
22f365d654
commit
e32643d7cb
@ -126,6 +126,8 @@ let
|
|||||||
|
|
||||||
pitz = callPackage ../applications/misc/pitz { };
|
pitz = callPackage ../applications/misc/pitz { };
|
||||||
|
|
||||||
|
plantuml = callPackage ../tools/misc/plantuml { };
|
||||||
|
|
||||||
pycairo = callPackage ../development/python-modules/pycairo {
|
pycairo = callPackage ../development/python-modules/pycairo {
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -10346,6 +10348,29 @@ let
|
|||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
sphinxcontrib_plantuml = buildPythonPackage (rec {
|
||||||
|
name = "sphinxcontrib-plantuml-0.5";
|
||||||
|
|
||||||
|
# See issue #6548
|
||||||
|
disabled = isPyPy;
|
||||||
|
|
||||||
|
src = pkgs.fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/s/sphinxcontrib-plantuml/${name}.tar.gz";
|
||||||
|
md5 = "4a8840fe3475a19c2af3fa877ab9d296";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with self; [sphinx plantuml];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Provides a Sphinx domain for embedding UML diagram with PlantUML";
|
||||||
|
|
||||||
|
homepage = http://bitbucket.org/birkenfeld/sphinx-contrib;
|
||||||
|
|
||||||
|
license = "BSD";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
sphinx_pypi_upload = buildPythonPackage (rec {
|
sphinx_pypi_upload = buildPythonPackage (rec {
|
||||||
name = "Sphinx-PyPI-upload-0.2.1";
|
name = "Sphinx-PyPI-upload-0.2.1";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user