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

20 lines
517 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ stdenv, buildPythonPackage, fetchPypi }:
2017-01-14 00:09:18 +01:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "markdown2";
2018-10-06 12:56:18 +02:00
version = "2.3.6";
2017-01-14 00:09:18 +01:00
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
extension = "zip";
2018-10-06 12:56:18 +02:00
sha256 = "08a124043aa0ad36ba2136239547d5011a2b770278abb11a5609611e0040ea05";
2017-01-14 00:09:18 +01:00
};
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 ];
};
}