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:
desiderius 2015-02-24 16:33:14 +01:00
parent 22f365d654
commit e32643d7cb

View file

@ -126,6 +126,8 @@ let
pitz = callPackage ../applications/misc/pitz { };
plantuml = callPackage ../tools/misc/plantuml { };
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 {
name = "Sphinx-PyPI-upload-0.2.1";