Python: move expressions in python-modules to their own folders

This commit is contained in:
Frederik Rietdijk
2017-11-05 10:45:54 +01:00
parent 37d5539aeb
commit 07eeeb3600
30 changed files with 30 additions and 30 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchurl }:
buildPythonPackage rec {
pname = "markdown2";
version = "2.3.4";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/m/markdown2/${name}.zip";
sha256 = "264731e7625402227ff6fb01f2d814882da7705432659a18a419c508e8bfccb1";
};
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 ];
};
}