1{ lib
2, buildPythonPackage
3, fetchPypi
4, sphinx
5}:
6
7buildPythonPackage rec {
8 pname = "sphinxcontrib-asyncio";
9 version = "0.3.0";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 hash = "sha256-mf0m4P5+34ckSnGpnDFv0Mm1CFbCUZrMqSfr50EAci4=";
15 };
16
17 propagatedBuildInputs = [
18 sphinx
19 ];
20
21 doCheck = false; # no tests
22
23 pythonImportsCheck = [
24 "sphinxcontrib.asyncio"
25 ];
26
27 meta = with lib; {
28 description = "Sphinx extension to add asyncio-specific markups";
29 homepage = "https://github.com/aio-libs/sphinxcontrib-asyncio";
30 license = licenses.asl20;
31 maintainers = with maintainers; [ hexa ];
32 };
33}