9 buildPythonPackage rec {
10 pname = "sphinxcontrib-youtube";
14 nativeBuildInputs = [ flit-core ];
16 src = fetchFromGitHub {
17 owner = "sphinx-contrib";
19 rev = "refs/tags/v${version}";
20 hash = "sha256-XuOfZ77tg9akmgTuMQN20OhgkFbn/6YzT46vpTsXxC8=";
23 propagatedBuildInputs = [ sphinx requests ];
25 # tests require internet access
28 pythonImportsCheck = [ "sphinxcontrib.youtube" ];
30 pythonNamespaces = [ "sphinxcontrib" ];
33 description = "Youtube extension for Sphinx";
34 homepage = "https://github.com/sphinx-contrib/youtube";
35 maintainers = with maintainers; [ gador ];
36 license = licenses.bsd3;