ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / cfscrape / default.nix
blob3fd98b7e1e2a47ffebe264f57022c0f142ff93e2
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "cfscrape";
9   version = "2.1.1";
10   src = fetchFromGitHub ({
11     owner = "Anorov";
12     repo = "cloudflare-scrape";
13     rev = "9692fe7ff3c17b76ddf0f4d50d3dba7d1791c9c6";
14     sha256 = "sha256-uO8lBZonjk+mlFYoNSaz+GIN/W9yf8VL9OQ7MKfsMgI=";
15   });
17   propagatedBuildInputs = [ requests ];
19   doCheck = false;
21   meta = with lib; {
22     homepage = "https://github.com/Anorov/cloudflare-scrape";
23     description = "A Python module to bypass Cloudflare's anti-bot page";
24     license = licenses.mit;
25     platforms = platforms.linux;
26     maintainers = with maintainers; [ WeebSorceress ];
27   };