nixpkgs/pkgs/development/python-modules/sphinxemoji/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

40 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 ];
};
}