mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ buildPythonPackage
|
|
, fetchzip
|
|
, isPy3k
|
|
, lib
|
|
, mkdocs
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mkdocs-gitlab-plugin";
|
|
version = "0.1.4";
|
|
format = "setuptools";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchzip {
|
|
url = "https://gitlab.inria.fr/vidjil/mkdocs-gitlab-plugin/-/archive/fb87fbfd404839e661a799c540664b1103096a5f/mkdocs-gitlab-plugin-fb87fbfd404839e661a799c540664b1103096a5f.tar.gz";
|
|
hash = "sha256-z+U0PRwymDDXVNM7a2Yl4pNNVBxpx/BhJnlx6kgyvww=";
|
|
};
|
|
|
|
patches = [ ./mkdocs-gitlab-plugin.diff ];
|
|
|
|
propagatedBuildInputs = [ mkdocs ];
|
|
|
|
pythonImportsCheck = [ "mkdocs_gitlab_plugin" ];
|
|
|
|
meta = with lib; {
|
|
description = "MkDocs plugin to transform strings such as #1234, %56, or !789 into links to a Gitlab repository.";
|
|
homepage = "https://gitlab.inria.fr/vidjil/mkdocs-gitlab-plugin";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ snpschaaf ];
|
|
longDescription = ''
|
|
Plugin for MkDocs.
|
|
Transform handles such as #1234, %56, !789, &12 or $34 into links to a gitlab repository,
|
|
given by the gitlab_url configuration option.
|
|
Before the #/%/!/&/$ is needed either a space, a '(', or a '['.
|
|
'';
|
|
};
|
|
}
|