3
0
Fork 0
forked from mirrors/nixpkgs

vimwiki-markdown: init at 0.2.0

This commit is contained in:
Gürkan Gür 2019-10-25 10:46:47 +02:00
parent 8a74c091b2
commit 74f56f4996
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv
, buildPythonApplication
, fetchPypi
, markdown
, pygments
}:
buildPythonApplication rec {
version = "0.2.0";
pname = "vimwiki-markdown";
src = fetchPypi {
inherit version pname;
sha256 = "0k7srlglhq4bm85kgd5ismslrk1fk8v16mm41a8k0kmcr9k4vi4a";
};
propagatedBuildInputs= [
markdown
pygments
];
meta = with stdenv.lib; {
description = "Vimwiki markdown plugin";
homepage = https://github.com/WnP/vimwiki_markdown;
license = licenses.mit;
maintainers = with maintainers; [ seqizz ];
};
}

View file

@ -6807,6 +6807,8 @@ in
vimpager = callPackage ../tools/misc/vimpager { };
vimpager-latest = callPackage ../tools/misc/vimpager/latest.nix { };
vimwiki-markdown = python3Packages.callPackage ../tools/misc/vimwiki-markdown { };
visidata = (newScope python3Packages) ../applications/misc/visidata {
};