python31{3,4}Packages.docutils-stubs: init at 0.0.22

This commit is contained in:
Doron Behar
2026-04-02 20:30:18 +03:00
parent d3d48af509
commit 01086cc527
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
docutils,
}:
buildPythonPackage (finalAttrs: {
pname = "docutils-stubs";
version = "0.0.22";
pyproject = true;
src = fetchFromGitHub {
owner = "tk0miya";
repo = "docutils-stubs";
tag = finalAttrs.version;
hash = "sha256-ng/f5e8ElFGNqtpdiQsv897TNkJ4gd++HAxON2l+80s=";
};
build-system = [
setuptools
];
dependencies = [
docutils
];
# Module doesn't have tests
doCheck = false;
meta = {
description = "PEP 561 based Type information for docutils";
homepage = "https://github.com/tk0miya/docutils-stubs";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ doronbehar ];
};
})
+2
View File
@@ -4571,6 +4571,8 @@ self: super: with self; {
docutils = callPackage ../development/python-modules/docutils { };
docutils-stubs = callPackage ../development/python-modules/docutils-stubs { };
docx2python = callPackage ../development/python-modules/docx2python { };
docx2txt = callPackage ../development/python-modules/docx2txt { };