depot/third_party/nixpkgs/pkgs/development/python-modules/sphinxemoji/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

39 lines
748 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, sphinx
, sphinxHook
}:
buildPythonPackage rec {
pname = "sphinxemoji";
version = "0.2.0";
outputs = [ "out" "doc" ];
src = fetchFromGitHub {
owner = "sphinx-contrib";
repo = "emojicodes";
rev = "refs/tags/v${version}";
hash = "sha256-TLhjpJpUIoDAe3RZ/7sjTgdW+5s7OpMEd1/w0NyCQ3A=";
};
propagatedBuildInputs = [
sphinx
];
nativeBuildInputs = [
sphinxHook
];
pythonImportsCheck = [
"sphinxemoji"
];
meta = with lib; {
description = "Extension to use emoji codes in your Sphinx documentation";
homepage = "https://github.com/sphinx-contrib/emojicodes";
license = licenses.mit;
maintainers = with maintainers; [ kaction ];
};
}