7 buildPythonPackage rec {
8 pname = "sphinx-copybutton";
11 src = fetchFromGitHub {
12 owner = "executablebooks";
13 repo = "sphinx-copybutton";
15 hash = "sha256-LM2LtQuYsPRJ2XX9aAW36xRtwghTkzug6A6fpVJ6hbk=";
16 fetchSubmodules = true;
19 propagatedBuildInputs = [
23 doCheck = false; # no tests
25 pythonImportsCheck = [ "sphinx_copybutton" ];
28 description = "A small sphinx extension to add a \"copy\" button to code blocks";
29 homepage = "https://github.com/executablebooks/sphinx-copybutton";
30 license = licenses.mit;
31 maintainers = with maintainers; [ Luflosi ];