New python package: clf

This commit is contained in:
koral 2015-03-19 17:11:57 +00:00
parent 80d8d1fc27
commit 2d46220863

View file

@ -1530,6 +1530,27 @@ let
};
};
clf = buildPythonPackage rec {
name = "clf-${version}";
version = "0.5.2";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/c/clf/${name}.tar.gz";
sha256 = "04lqd2i4fjs606b0q075yi9xksk567m0sfph6v6j80za0hvzqyy5";
};
# Error when running tests:
# No local packages or download links found for requests
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/ncrocfer/clf;
description = "Command line tool to search snippets on Commandlinefu.com";
license = licenses.mit;
maintainers = [ maintainers.koral ];
};
};
click = buildPythonPackage rec {
name = "click-3.3";