linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / clf / default.nix
blob978d08051f7d86551170de0ed588d3b5fb276ddd
1 { lib, buildPythonPackage, fetchPypi
2 , docopt, requests, pygments }:
4 buildPythonPackage rec {
5   pname = "clf";
6   version = "0.5.7";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "abc919a1e99667f32fdde15dfb4bc527dbe22cf86a17acb78a449d7f2dfe937e";
11   };
13   patchPhase = ''
14     sed -i 's/==/>=/' requirements.txt
15   '';
17   propagatedBuildInputs = [ docopt requests pygments ];
19   # Error when running tests:
20   # No local packages or download links found for requests
21   doCheck = false;
23   meta = with lib; {
24     homepage = "https://github.com/ncrocfer/clf";
25     description = "Command line tool to search snippets on Commandlinefu.com";
26     license = licenses.mit;
27     maintainers = with maintainers; [ koral ];
28   };