python31{3,4}Packages.docutils-stubs: init at 0.0.22
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
})
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user