Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 663 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, requests 5}: 6 7buildPythonPackage rec { 8 pname = "cfscrape"; 9 version = "2.1.1"; 10 src = fetchFromGitHub ({ 11 owner = "Anorov"; 12 repo = "cloudflare-scrape"; 13 rev = "9692fe7ff3c17b76ddf0f4d50d3dba7d1791c9c6"; 14 hash = "sha256-uO8lBZonjk+mlFYoNSaz+GIN/W9yf8VL9OQ7MKfsMgI="; 15 }); 16 17 propagatedBuildInputs = [ requests ]; 18 19 doCheck = false; 20 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; [ ]; 27 }; 28}