mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
python3Packages.cloudscraper: init at 1.2.52
This commit is contained in:
parent
f18ba0425d
commit
33ec84a39b
38
pkgs/development/python-modules/cloudscraper/default.nix
Normal file
38
pkgs/development/python-modules/cloudscraper/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, isPy3k
|
||||
, fetchPypi
|
||||
, requests
|
||||
, requests-toolbelt
|
||||
, pyparsing
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cloudscraper";
|
||||
version = "1.2.52";
|
||||
disabled = !isPy3k;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "07j2nhzimzhcskj2wpxpvpb3dhpci19daw02r2ckkjiq3zifhm6v";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
requests-toolbelt
|
||||
pyparsing
|
||||
];
|
||||
|
||||
# The tests require several other dependencies, some of which aren't in
|
||||
# nixpkgs yet, and also aren't included in the PyPI bundle. TODO.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "cloudscraper" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Python module to bypass Cloudflare's anti-bot page";
|
||||
homepage = https://github.com/venomous/cloudscraper;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kini ];
|
||||
};
|
||||
}
|
|
@ -1294,6 +1294,8 @@ in {
|
|||
|
||||
cloudpickle = callPackage ../development/python-modules/cloudpickle { };
|
||||
|
||||
cloudscraper = callPackage ../development/python-modules/cloudscraper { };
|
||||
|
||||
clustershell = callPackage ../development/python-modules/clustershell { };
|
||||
|
||||
cma = callPackage ../development/python-modules/cma { };
|
||||
|
|
Loading…
Reference in a new issue