mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
pythonPackages.markdown2: 2.3.0 -> 2.3.1
This commit is contained in:
parent
1f5b7484a3
commit
1094e948bf
18
pkgs/development/python-modules/markdown2.nix
Normal file
18
pkgs/development/python-modules/markdown2.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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}";
|
||||
|
Loading…
Reference in New Issue
Block a user