3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #6900 from k0ral/clf

New python package: clf
This commit is contained in:
cillianderoiste 2015-03-22 19:28:25 +01:00
commit c44c4cbe37

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";