pythonPackages.markdown2: 2.3.0 -> 2.3.1

This commit is contained in:
Jörg Thalheim 2017-01-14 00:09:18 +01:00
parent 1f5b7484a3
commit 1094e948bf
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 19 additions and 18 deletions

View File

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

View File

@ -29530,24 +29530,7 @@ EOF
};
};
markdown2 = buildPythonPackage rec {
name = "markdown2-${version}";
version = "2.3.0";
src = pkgs.fetchurl {
url = "mirror://pypi/m/markdown2/${name}.zip";
sha256 = "073zyx3caqa9zlzxa82k9k2nhhn8c5imqpgp5nwqnh0fgaj9pqn8";
};
propagatedBuildInputs = with self; [];
meta = {
description = "A fast and complete Python implementation of Markdown";
homepage = https://github.com/trentm/python-markdown2;
license = licenses.mit;
maintainers = with maintainers; [ hbunke ];
};
};
markdown2 = callPackage ../development/python-modules/markdown2.nix { };
evernote = buildPythonPackage rec {
name = "evernote-${version}";