mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
python311Packages.sphinxcontrib-ditaa: init at 1.0.2
Co-authored-by: OTABI Tomoya <tomoya.otabi@gmail.com>
This commit is contained in:
parent
51de558f56
commit
197d6261eb
|
@ -0,0 +1,42 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
unittestCheckHook,
|
||||
setuptools,
|
||||
sphinx,
|
||||
ditaa,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sphinxcontrib-ditaa";
|
||||
version = "1.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-V/LhOwWbOP3olYC+ypFqxsp0VrLXBsPd6p3UiQ5fW9M=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
sphinx
|
||||
ditaa
|
||||
];
|
||||
|
||||
# no tests provided
|
||||
doCheck = false;
|
||||
|
||||
# ? needs docutils exported as runtime dep
|
||||
#pythonImportsCheck = [ "sphinxcontrib.ditaa" ];
|
||||
|
||||
pythonNamespaces = [ "sphinxcontrib" ];
|
||||
|
||||
meta = {
|
||||
description = "Sphinx ditaa extension";
|
||||
homepage = "https://pypi.org/project/sphinxcontrib-ditaa";
|
||||
maintainers = with lib.maintainers; [ rconybea ];
|
||||
license = lib.licenses.bsd2;
|
||||
};
|
||||
}
|
|
@ -14283,6 +14283,8 @@ self: super: with self; {
|
|||
|
||||
sphinxcontrib-devhelp = callPackage ../development/python-modules/sphinxcontrib-devhelp { };
|
||||
|
||||
sphinxcontrib-ditaa = callPackage ../development/python-modules/sphinxcontrib-ditaa { };
|
||||
|
||||
sphinxcontrib-excel-table = callPackage ../development/python-modules/sphinxcontrib-excel-table { };
|
||||
|
||||
sphinxcontrib-fulltoc = callPackage ../development/python-modules/sphinxcontrib-fulltoc { };
|
||||
|
|
Loading…
Reference in a new issue