depot/third_party/nixpkgs/pkgs/development/python-modules/sphinx-copybutton/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

33 lines
760 B
Nix

{
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 = with lib; {
description = "Small sphinx extension to add a \"copy\" button to code blocks";
homepage = "https://github.com/executablebooks/sphinx-copybutton";
license = licenses.mit;
maintainers = with maintainers; [ Luflosi ];
};
}