mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
New python package: clf
This commit is contained in:
parent
80d8d1fc27
commit
2d46220863
@ -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";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user