blob: 45cd3932b14bad1b4ee324ab020ab5693e5b07e1 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
sphinx,
}:
buildPythonPackage rec {
pname = "sphinx-copybutton";
version = "0.5.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "executablebooks";
repo = "sphinx-copybutton";
rev = "v${version}";
hash = "sha256-LM2LtQuYsPRJ2XX9aAW36xRtwghTkzug6A6fpVJ6hbk=";
fetchSubmodules = true;
};
propagatedBuildInputs = [ sphinx ];
doCheck = false; # no tests
pythonImportsCheck = [ "sphinx_copybutton" ];
meta = {
description = "Small sphinx extension to add a \"copy\" button to code blocks";
homepage = "https://github.com/executablebooks/sphinx-copybutton";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Luflosi ];
};
}
|