pythonPackages.clf: Move to own file
This commit is contained in:
parent
3c991104a0
commit
0c82d68991
29
pkgs/development/python-modules/clf/default.nix
Normal file
29
pkgs/development/python-modules/clf/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi
|
||||||
|
, docopt, requests, pygments }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "clf";
|
||||||
|
version = "0.5.2";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "04lqd2i4fjs606b0q075yi9xksk567m0sfph6v6j80za0hvzqyy5";
|
||||||
|
};
|
||||||
|
|
||||||
|
patchPhase = ''
|
||||||
|
sed -i 's/==/>=/' requirements.txt
|
||||||
|
'';
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ docopt requests pygments ];
|
||||||
|
|
||||||
|
# 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 = with maintainers; [ koral ];
|
||||||
|
};
|
||||||
|
}
|
@ -1536,32 +1536,7 @@ in {
|
|||||||
|
|
||||||
cld2-cffi = callPackage ../development/python-modules/cld2-cffi {};
|
cld2-cffi = callPackage ../development/python-modules/cld2-cffi {};
|
||||||
|
|
||||||
clf = buildPythonPackage rec {
|
clf = callPackage ../development/python-modules/clf {};
|
||||||
name = "clf-${version}";
|
|
||||||
version = "0.5.2";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/c/clf/${name}.tar.gz";
|
|
||||||
sha256 = "04lqd2i4fjs606b0q075yi9xksk567m0sfph6v6j80za0hvzqyy5";
|
|
||||||
};
|
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
sed -i 's/==/>=/' requirements.txt
|
|
||||||
'';
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [ docopt requests pygments ];
|
|
||||||
|
|
||||||
# Error when running tests:
|
|
||||||
# No local packages or download links found for requests
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/ncrocfer/clf;
|
|
||||||
description = "Command line tool to search snippets on Commandlinefu.com";
|
|
||||||
license = licenses.mit;
|
|
||||||
maintainers = with maintainers; [ koral ];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
click = buildPythonPackage rec {
|
click = buildPythonPackage rec {
|
||||||
name = "click-6.7";
|
name = "click-6.7";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user