depot/third_party/nixpkgs/pkgs/tools/text/m2r/default.nix
Default email 07d6a74cbb Project import generated by Copybara.
GitOrigin-RevId: f5e8bdd07d1afaabf6b37afc5497b1e498b8046f
2021-03-19 18:17:44 +01:00

32 lines
602 B
Nix

{ lib
, buildPythonApplication
, fetchFromGitHub
, docutils
, mistune
, pygments
}:
buildPythonApplication rec {
pname = "m2r";
version = "0.2.1";
src = fetchFromGitHub {
owner = "miyakogi";
repo = pname;
rev = "v${version}";
hash = "sha256-JNLPEXMoiISh4RnKP+Afj9/PJp9Lrx9UYHsfuGAL7uI=";
};
buildInputs = [
docutils
mistune
pygments
];
meta = with lib; {
homepage = "https://github.com/miyakogi/m2r";
description = "Markdown-to-RestructuredText converter";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ];
};
}