depot/third_party/nixpkgs/pkgs/development/python-modules/sphinx-copybutton/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

33 lines
762 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 = "A 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 ];
};
}