nixpkgs/pkgs/development/python-modules/markdown2/default.nix

20 lines
517 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "markdown2";
2017-11-24 20:36:20 +01:00
version = "2.3.5";
src = fetchPypi {
inherit pname version;
extension = "zip";
2017-11-24 20:36:20 +01:00
sha256 = "8bb9a24eb2aa02f1427aabe46483f0f0215ab18c8a345315ae8e2ee3c3a09c03";
};
meta = with stdenv.lib; {
description = "A fast and complete Python implementation of Markdown";
homepage = https://github.com/trentm/python-markdown2;
license = licenses.mit;
maintainers = with maintainers; [ hbunke ];
};
}