depot/third_party/nixpkgs/pkgs/development/python-modules/sphinx-prompt/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

27 lines
592 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, sphinxHook
, sphinx
}:
buildPythonPackage rec {
pname = "sphinx-prompt";
version = "1.5.0";
src = fetchFromGitHub {
owner = "sbrunner";
repo = "sphinx-prompt";
rev = version;
hash = "sha256-ClUPAIyPrROJw4GXeakA8U443Vlhy3P/2vFnAtyrPHU=";
};
propagatedBuildInputs = [ sphinx ];
meta = with lib; {
description = "A sphinx extension for creating unselectable prompt";
homepage = "https://github.com/sbrunner/sphinx-prompt";
license = licenses.bsd3;
maintainers = with maintainers; [ kaction ];
};
}