depot/third_party/nixpkgs/pkgs/development/python-modules/markdown2/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

19 lines
517 B
Nix

{ lib, stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "markdown2";
version = "2.3.6";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "08a124043aa0ad36ba2136239547d5011a2b770278abb11a5609611e0040ea05";
};
meta = with lib; {
description = "A fast and complete Python implementation of Markdown";
homepage = "https://github.com/trentm/python-markdown2";
license = licenses.mit;
maintainers = with maintainers; [ hbunke ];
};
}