blob: e0ceb4611e0913ac9ae0c05e49b2d911fb84f9d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 ];
};
})
|